Subhashish, le Sun 01 Jun 2014 18:26:25 +0530, a écrit : > I'm sure this using of system headers is not the way, but it can be easily > swapped out when the redefining-from-scratch implementation is ready. I'm > going with the darwin one now for that seems quick. I'll work on the other > implementation later.
Ok. > Now then a question - Do we use struct sigaction in ....bits/sigaction.h > while passing sigactions both to and from the kernel? (emphasis on both) Remember that the kernel does not know at all about posix stuff, that includes signals :) Signal management is entirely in userspace, and it uses the same sigaction in all cases. Samuel