Could anyone give me some hints about how to implement signals (function sigaction , sigprocmask etc) into psp development? Any link to source code is fine.
Or it just impossible to port this kind of function into psp (because that is platform depends)?
Thanks everyone
signals function in psp?
Signals are a *nix specific thing, just like that windows doesn't support them neither does the PSP. Most signals can be replaced with PSP specific functionality such as Alarms (for SIGALRM) or exception handlers for things like SIGBUS and SIGSEGV.
Due to the significant differences between the PSP kernel and a *nix kernel there is no obvious way to simulate them in the general case.
Due to the significant differences between the PSP kernel and a *nix kernel there is no obvious way to simulate them in the general case.