mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-12-08 06:09:58 +00:00
17 lines
236 B
C++
17 lines
236 B
C++
|
|
#include <unistd.h>
|
||
|
|
#include <sys/stat.h>
|
||
|
|
|
||
|
|
int main()
|
||
|
|
{
|
||
|
|
if (!fork()) {
|
||
|
|
for (;;) {
|
||
|
|
mkdir("/tmp/x", 0666);
|
||
|
|
rmdir("/tmp/x");
|
||
|
|
}
|
||
|
|
}
|
||
|
|
for (;;) {
|
||
|
|
chdir("/tmp/x");
|
||
|
|
}
|
||
|
|
return 0;
|
||
|
|
}
|