We do our best to keep copyright headers up to date, yet git history provides better information on this subject and is more accurate than copyright headers.
35 lines
560 B
C
35 lines
560 B
C
/*
|
|
* Copyright (c) 2016-2018 The strace developers.
|
|
* All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
#include "tests.h"
|
|
#include <asm/unistd.h>
|
|
|
|
#ifdef __NR_flock
|
|
|
|
# include <stdio.h>
|
|
# include <sys/file.h>
|
|
# include <unistd.h>
|
|
|
|
int
|
|
main(void)
|
|
{
|
|
const unsigned long fd = (long int) 0xdeadbeefffffffffULL;
|
|
|
|
long rc = syscall(__NR_flock, fd, LOCK_SH);
|
|
printf("flock(%d, LOCK_SH) = %ld %s (%m)\n",
|
|
(int) fd, rc, errno2name());
|
|
|
|
puts("+++ exited with 0 +++");
|
|
return 0;
|
|
}
|
|
|
|
#else
|
|
|
|
SKIP_MAIN_UNDEFINED("__NR_flock")
|
|
|
|
#endif
|