Greetings,
Hellband will compile on Raspbian, but it throws a warning on
I thought to solve this with typecasting the parameters since forcing zero into a structure seems arcane, but still had the exact same warning
I checked the man page, and I do have the proper include.
So then I went to read signals.h and found the following
There is no reference to POSIX anywhere in hellband header files, so what do I do? Just add the __USE_POSIX flag to the makefile for Raspbian? Am I missing something?
I dont run in to this at all when compiling for Ternux.
Hellband will compile on Raspbian, but it throws a warning on
Code:
files.c:4633:8: warning: implicit declaration of function �kill’ [-Wimplicit-function-declaration] (void)kill(0, SIGSTOP);
Code:
(void)kill((pid_t)0, (int)SIGSTOP);
So then I went to read signals.h and found the following
Code:
/* Send signal SIG to process number PID. If PID is zero, send SIG to all processes in the current process's process group. If PID is < -1, send SIG to all processes in process group - PID. */ #ifdef __USE_POSIX extern int kill (__pid_t __pid, int __sig) __THROW; #endif /* Use POSIX. */
I dont run in to this at all when compiling for Ternux.
Comment