Displaying 2 results from an estimated 2 matches for "sc_syscal".
Did you mean:
sc_syscall
1999 Jan 24
1
HPUX 9.05 & Samba 2.0.0 & problems -> solved !
...defined(HPUX) && !defined(SA_RESTART) /* e.g. HPUX 9.0x */
+sig_cld_leave_status(int signum, int code, struct sigcontext *scp)
+#else
+sig_cld_leave_status(int signum)
+#endif
{
+#if defined(HPUX) && !defined(SA_RESTART) /* e.g. HPUX 9.0x */
+ extern int DEBUGLEVEL;
+ if(scp->sc_syscall!=SYS_NOTSYSCALL) {
+ scp->sc_syscall_action = SIG_RESTART; /* default: SIG_RETURN */
+ /* waitpid() -> scp->sc_syscall == 200 ! */
+ DEBUG(9,("sig_cld_leave_status: syscall %d
restarted\n",scp->sc_syscall));
+ }
+#endif
/*
* Turns out it's *really* importan...
1999 Jan 25
0
SAMBA digest 1954
...ed(SA_RESTART) /* e.g. HPUX 9.0x */
>+sig_cld_leave_status(int signum, int code, struct sigcontext *scp)
>+#else
>+sig_cld_leave_status(int signum)
>+#endif
> {
>+#if defined(HPUX) && !defined(SA_RESTART) /* e.g. HPUX 9.0x */
>+ extern int DEBUGLEVEL;
>+ if(scp->sc_syscall!=SYS_NOTSYSCALL) {
>+ scp->sc_syscall_action = SIG_RESTART; /* default: SIG_RETURN */
>+ /* waitpid() -> scp->sc_syscall == 200 ! */
>+ DEBUG(9,("sig_cld_leave_status: syscall %d
>restarted\n",scp->sc_syscall));
>+ }
>+#endif
> /*
> * Turns...