diff options
author | andrew <andrew@FreeBSD.org> | 2015-07-10 08:36:22 +0000 |
---|---|---|
committer | andrew <andrew@FreeBSD.org> | 2015-07-10 08:36:22 +0000 |
commit | 87fffd8ba1ca37d07c8be4894762ecb810711361 (patch) | |
tree | da077ad56856606402f3974e8990660b9ca8abf9 /lib/libc/tests | |
parent | 41752fc79f02b0f5cb11b817024f2a58ff4b2dcf (diff) | |
download | FreeBSD-src-87fffd8ba1ca37d07c8be4894762ecb810711361.zip FreeBSD-src-87fffd8ba1ca37d07c8be4894762ecb810711361.tar.gz |
Add support for makecontext. This supports up to 8 arguments as this
simplifies the code, these can be passed in registers.
Obtained from: ABT Systems Ltd
Sponsored by: The FreeBSD Foundation
Diffstat (limited to 'lib/libc/tests')
-rw-r--r-- | lib/libc/tests/sys/Makefile | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/libc/tests/sys/Makefile b/lib/libc/tests/sys/Makefile index 5e457fd..89431bc 100644 --- a/lib/libc/tests/sys/Makefile +++ b/lib/libc/tests/sys/Makefile @@ -12,9 +12,7 @@ NETBSD_ATF_TESTS_C+= clock_gettime_test NETBSD_ATF_TESTS_C+= connect_test NETBSD_ATF_TESTS_C+= dup_test NETBSD_ATF_TESTS_C+= fsync_test -.if ${MACHINE} != "arm64" # ARM64TODO: Missing makecontext NETBSD_ATF_TESTS_C+= getcontext_test -.endif NETBSD_ATF_TESTS_C+= getgroups_test NETBSD_ATF_TESTS_C+= getitimer_test NETBSD_ATF_TESTS_C+= getlogin_test |