Dmitry V. Levin
c6782f144a
strace test suite is now provided under the terms of the GNU General Public License version 2 or later, see tests/COPYING for more details.
35 lines
618 B
C
35 lines
618 B
C
/*
|
|
* Check decoding of migrate_pages syscall.
|
|
*
|
|
* Copyright (c) 2016 Dmitry V. Levin <ldv@altlinux.org>
|
|
* All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
#include "tests.h"
|
|
#include <asm/unistd.h>
|
|
|
|
#ifdef __NR_migrate_pages
|
|
|
|
# include <stdio.h>
|
|
# include <unistd.h>
|
|
|
|
int
|
|
main(void)
|
|
{
|
|
const long pid = (long) 0xfacefeedffffffffULL;
|
|
long rc = syscall(__NR_migrate_pages, pid, 0, 0, 0);
|
|
printf("migrate_pages(%d, 0, NULL, NULL) = %ld %s (%m)\n",
|
|
(int) pid, rc, errno2name());
|
|
|
|
puts("+++ exited with 0 +++");
|
|
return 0;
|
|
}
|
|
|
|
#else
|
|
|
|
SKIP_MAIN_UNDEFINED("__NR_migrate_pages")
|
|
|
|
#endif
|