Quite a regular
Joined: 2006/11/22 17:57 Last Login
: 6/4 16:05
From Italy, Rome
Group:
Registered Users
|
Thanks to the dudes mentioned above, i moved alittle forward:
Getting some error as follow:
execunix.c: In function 'exec_cmd': execunix.c:140:22: error: storage size of 'ignore' isn't known struct sigaction ignore, saveintr, savequit; ^ execunix.c:140:30: error: storage size of 'saveintr' isn't known struct sigaction ignore, saveintr, savequit; ^ execunix.c:140:40: error: storage size of 'savequit' isn't known struct sigaction ignore, saveintr, savequit; ^ execunix.c:201:36: error: '_SC_CLK_TCK' undeclared (first use in this function) if ( !tps ) tps = sysconf( _SC_CLK_TCK ); ^ execunix.c:201:36: note: each undeclared identifier is reported only once for each function it appears in execunix.c:221:21: error: 'SIG_BLOCK' undeclared (first use in this function) if (sigprocmask(SIG_BLOCK, &chldmask, &savemask) < 0) ^ execunix.c:240:21: error: 'SIG_SETMASK' undeclared (first use in this function) sigprocmask(SIG_SETMASK, &savemask, NULL); ^ execunix.c:257:27: error: storage size of 'r_limit' isn't known struct rlimit r_limit; ^ execunix.c:260:24: error: 'RLIMIT_CPU' undeclared (first use in this function) setrlimit( RLIMIT_CPU, &r_limit ); ^ execunix.c: In function 'exec_wait': execunix.c:489:25: error: 'SIG_BLOCK' undeclared (first use in this function) sigprocmask(SIG_BLOCK, &sigmask, NULL); ^ execunix.c:494:25: error: 'SIG_UNBLOCK' undeclared (first use in this function) sigprocmask(SIG_UNBLOCK, &sigmask, NULL); ^
|