* [LTP] [PATCH] Change syscall numbers to symbolic constants in rt_sigprocmask01
@ 2009-06-08 11:25 Jiri Palecek
2009-06-09 18:25 ` Subrata Modak
0 siblings, 1 reply; 2+ messages in thread
From: Jiri Palecek @ 2009-06-08 11:25 UTC (permalink / raw)
To: ltp-list
Hello,
this patch changes the syscall numbers in rt_sigprocmask01 test to symbolic constants, to make it functional on other architectures than i386.
Regards
Jiri Palecek
Signed-off-by: Jiri Palecek <jpalecek@web.de>
---
.../syscalls/rt_sigprocmask/rt_sigprocmask01.c | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/testcases/kernel/syscalls/rt_sigprocmask/rt_sigprocmask01.c b/testcases/kernel/syscalls/rt_sigprocmask/rt_sigprocmask01.c
index c3251ab..6398a28 100644
--- a/testcases/kernel/syscalls/rt_sigprocmask/rt_sigprocmask01.c
+++ b/testcases/kernel/syscalls/rt_sigprocmask/rt_sigprocmask01.c
@@ -163,14 +163,14 @@ int main(int ac, char **av) {
/* call rt_sigaction() */
act.sa_handler = sig_handler;
- TEST(syscall(174, 33, &act, &oact, 8));
+ TEST(syscall(__NR_rt_sigaction, 33, &act, &oact, 8));
if(TEST_RETURN != 0){
tst_resm(TFAIL,"Call to rt_sigaction() Failed, errno=%d : %s",TEST_ERRNO, strerror(TEST_ERRNO));
cleanup();
tst_exit();
}
/* call rt_sigprocmask() to block signal#33 */
- TEST(syscall(175, SIG_BLOCK, &set, &oset, 8));
+ TEST(syscall(__NR_rt_sigprocmask, SIG_BLOCK, &set, &oset, 8));
if(TEST_RETURN == -1){
tst_resm(TFAIL,"Call to rt_sigprocmask()**** Failed, errno=%d : %s",TEST_ERRNO, strerror(TEST_ERRNO));
cleanup();
@@ -192,7 +192,7 @@ int main(int ac, char **av) {
}
else {
/* call rt_sigpending() */
- TEST(syscall(176, &oset, 8));
+ TEST(syscall(__NR_rt_sigpending, &oset, 8));
if(TEST_RETURN == -1){
tst_resm(TFAIL,"call rt_sigpending() failed, errno=%d : %s",TEST_ERRNO, strerror(TEST_ERRNO));
cleanup();
@@ -205,7 +205,7 @@ int main(int ac, char **av) {
tst_exit();
}
/* call rt_sigprocmask() to unblock signal#33 */
- TEST(syscall(175, SIG_UNBLOCK, &set, &oset, 8));
+ TEST(syscall(__NR_rt_sigprocmask, SIG_UNBLOCK, &set, &oset, 8));
if(TEST_RETURN == -1){
tst_resm(TFAIL,"Call to rt_sigprocmask() Failed, errno=%d : %s",TEST_ERRNO, strerror(TEST_ERRNO));
cleanup();
--
1.6.2.4
------------------------------------------------------------------------------
OpenSolaris 2009.06 is a cutting edge operating system for enterprises
looking to deploy the next generation of Solaris that includes the latest
innovations from Sun and the OpenSource community. Download a copy and
enjoy capabilities such as Networking, Storage and Virtualization.
Go to: http://p.sf.net/sfu/opensolaris-get
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list
^ permalink raw reply related [flat|nested] 2+ messages in thread* Re: [LTP] [PATCH] Change syscall numbers to symbolic constants in rt_sigprocmask01
2009-06-08 11:25 [LTP] [PATCH] Change syscall numbers to symbolic constants in rt_sigprocmask01 Jiri Palecek
@ 2009-06-09 18:25 ` Subrata Modak
0 siblings, 0 replies; 2+ messages in thread
From: Subrata Modak @ 2009-06-09 18:25 UTC (permalink / raw)
To: Jiri Palecek; +Cc: ltp-list
On Mon, 2009-06-08 at 13:25 +0200, Jiri Palecek wrote:
> Hello,
>
> this patch changes the syscall numbers in rt_sigprocmask01 test to symbolic constants, to make it functional on other architectures than i386.
>
> Regards
> Jiri Palecek
>
> Signed-off-by: Jiri Palecek <jpalecek@web.de>
Thanks.
Regards--
Subrata
>
> ---
> .../syscalls/rt_sigprocmask/rt_sigprocmask01.c | 8 ++++----
> 1 files changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/testcases/kernel/syscalls/rt_sigprocmask/rt_sigprocmask01.c b/testcases/kernel/syscalls/rt_sigprocmask/rt_sigprocmask01.c
> index c3251ab..6398a28 100644
> --- a/testcases/kernel/syscalls/rt_sigprocmask/rt_sigprocmask01.c
> +++ b/testcases/kernel/syscalls/rt_sigprocmask/rt_sigprocmask01.c
> @@ -163,14 +163,14 @@ int main(int ac, char **av) {
>
> /* call rt_sigaction() */
> act.sa_handler = sig_handler;
> - TEST(syscall(174, 33, &act, &oact, 8));
> + TEST(syscall(__NR_rt_sigaction, 33, &act, &oact, 8));
> if(TEST_RETURN != 0){
> tst_resm(TFAIL,"Call to rt_sigaction() Failed, errno=%d : %s",TEST_ERRNO, strerror(TEST_ERRNO));
> cleanup();
> tst_exit();
> }
> /* call rt_sigprocmask() to block signal#33 */
> - TEST(syscall(175, SIG_BLOCK, &set, &oset, 8));
> + TEST(syscall(__NR_rt_sigprocmask, SIG_BLOCK, &set, &oset, 8));
> if(TEST_RETURN == -1){
> tst_resm(TFAIL,"Call to rt_sigprocmask()**** Failed, errno=%d : %s",TEST_ERRNO, strerror(TEST_ERRNO));
> cleanup();
> @@ -192,7 +192,7 @@ int main(int ac, char **av) {
> }
> else {
> /* call rt_sigpending() */
> - TEST(syscall(176, &oset, 8));
> + TEST(syscall(__NR_rt_sigpending, &oset, 8));
> if(TEST_RETURN == -1){
> tst_resm(TFAIL,"call rt_sigpending() failed, errno=%d : %s",TEST_ERRNO, strerror(TEST_ERRNO));
> cleanup();
> @@ -205,7 +205,7 @@ int main(int ac, char **av) {
> tst_exit();
> }
> /* call rt_sigprocmask() to unblock signal#33 */
> - TEST(syscall(175, SIG_UNBLOCK, &set, &oset, 8));
> + TEST(syscall(__NR_rt_sigprocmask, SIG_UNBLOCK, &set, &oset, 8));
> if(TEST_RETURN == -1){
> tst_resm(TFAIL,"Call to rt_sigprocmask() Failed, errno=%d : %s",TEST_ERRNO, strerror(TEST_ERRNO));
> cleanup();
------------------------------------------------------------------------------
Crystal Reports - New Free Runtime and 30 Day Trial
Check out the new simplified licensing option that enables unlimited
royalty-free distribution of the report engine for externally facing
server and web deployment.
http://p.sf.net/sfu/businessobjects
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2009-06-09 18:25 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-06-08 11:25 [LTP] [PATCH] Change syscall numbers to symbolic constants in rt_sigprocmask01 Jiri Palecek
2009-06-09 18:25 ` Subrata Modak
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.