diff options
Diffstat (limited to 'src/tryflock.c')
-rw-r--r-- | src/tryflock.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/tryflock.c b/src/tryflock.c new file mode 100644 index 0000000..b18743a --- /dev/null +++ b/src/tryflock.c @@ -0,0 +1,8 @@ +#include <sys/types.h> +#include <sys/file.h> +#include <fcntl.h> + +int main() +{ + flock(0,LOCK_EX | LOCK_UN | LOCK_NB); +} |