X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=tests%2Futils%2Ftestapp%2Fgen-syscall-events%2Fgen-syscall-events.c;h=ead6fe3870be9b31595d9f4c55d0deed08b0f39c;hp=5e4aabe582708f404934f3eaa25a1719689efdf7;hb=9d16b343fb9e781fc8d8fa3c448a3f382306dd33;hpb=030312cfdeb643db807b028f9edffdee57384416 diff --git a/tests/utils/testapp/gen-syscall-events/gen-syscall-events.c b/tests/utils/testapp/gen-syscall-events/gen-syscall-events.c index 5e4aabe58..ead6fe387 100644 --- a/tests/utils/testapp/gen-syscall-events/gen-syscall-events.c +++ b/tests/utils/testapp/gen-syscall-events/gen-syscall-events.c @@ -1,22 +1,10 @@ /* - * Copyright (C) - 2017 Francis Deslauriers + * Copyright (C) 2017 Francis Deslauriers * - * This library is free software; you can redistribute it and/or modify it - * under the terms of the GNU Lesser General Public License as published by the - * Free Software Foundation; version 2.1 of the License. + * SPDX-License-Identifier: LGPL-2.1-only * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License - * for more details. - * - * You should have received a copy of the GNU Lesser General Public License - * along with this library; if not, write to the Free Software Foundation, - * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#define _LGPL_SOURCE - #include #include #include @@ -33,7 +21,7 @@ */ int main(int argc, char **argv) { - int fd, ret = 0; + int fd, ret; char buf[MAX_LEN]; char *start_file; @@ -59,7 +47,7 @@ int main(int argc, char **argv) * Start generating syscalls. We use syscall(2) to prevent libc to change * the underlying syscall. e.g. calling openat(2) instead of open(2). */ - fd = syscall(SYS_open, "/proc/cpuinfo", O_RDONLY); + fd = syscall(SYS_openat, AT_FDCWD, "/proc/cpuinfo", O_RDONLY); if (fd < 0) { perror("open"); ret = -1;