From 214b5beecedc8425ae45fc8c715a0c75877458f5 Mon Sep 17 00:00:00 2001 From: patacongo Date: Fri, 1 Feb 2008 21:23:19 +0000 Subject: errno now defined to be *get_errno_ptr() git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@607 42af7a65-404d-4744-a932-0658087f49c3 --- nuttx/arch/z16/src/common/up_sigdeliver.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'nuttx/arch/z16/src/common') diff --git a/nuttx/arch/z16/src/common/up_sigdeliver.c b/nuttx/arch/z16/src/common/up_sigdeliver.c index afc554e85..e6aa6325d 100644 --- a/nuttx/arch/z16/src/common/up_sigdeliver.c +++ b/nuttx/arch/z16/src/common/up_sigdeliver.c @@ -91,7 +91,7 @@ void up_sigdeliver(void) * EINTR). */ - int saved_errno = rtcb->errno; + int saved_errno = rtcb->pterrno; up_ledon(LED_SIGNAL); @@ -131,7 +131,7 @@ void up_sigdeliver(void) */ dbg("Resuming\n"); - rtcb->errno = saved_errno; + rtcb->pterrno = saved_errno; /* Then restore the correct state for this thread of * execution. -- cgit v1.2.3