summaryrefslogtreecommitdiffstats
path: root/testModule/endless.c
diff options
context:
space:
mode:
authortorben2015-04-13 19:55:58 +0200
committertorben2015-04-13 19:55:58 +0200
commit105f29aa50fe7d3324cb109714af7d0b3c2c27df (patch)
tree22d2253071223b7897a50be86ab0efd74139578b /testModule/endless.c
parentAdding remotly notifyable test initramfs service. (diff)
downloadsystemd-init-105f29aa50fe7d3324cb109714af7d0b3c2c27df.tar.gz
systemd-init-105f29aa50fe7d3324cb109714af7d0b3c2c27df.tar.xz
systemd-init-105f29aa50fe7d3324cb109714af7d0b3c2c27df.zip
Adding endless test service. Fix some naming conventions.
Diffstat (limited to 'testModule/endless.c')
-rw-r--r--testModule/endless.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/testModule/endless.c b/testModule/endless.c
new file mode 100644
index 00000000..e3598e88
--- /dev/null
+++ b/testModule/endless.c
@@ -0,0 +1,10 @@
+#include <unistd.h>
+#include <stdlib.h>
+#include <string.h>
+#include <stdio.h>
+
+int main(int argc, char *argv[]) {
+ // argv[0][0] = '@';
+ while (1)
+ sleep(5);
+}