Update TODO list regarding non-queuing of signal actions; Add comments in code at areas where the issue applies.

This commit is contained in:
Gregory Nutt
2019-02-04 08:35:03 -06:00
parent 1bbcd1ad96
commit b1001b4e50
21 changed files with 159 additions and 31 deletions
+6 -1
View File
@@ -166,15 +166,20 @@
#ifndef __ASSEMBLY__
struct xcptcontext
{
#ifndef CONFIG_DISABLE_SIGNALS
/* The following function pointer is non-zero if there are pending signals
* to be processed.
*/
#ifndef CONFIG_DISABLE_SIGNALS
void *sigdeliver; /* Actual type is sig_deliver_t */
/* These are saved copies of instruction pointer and EFLAGS used during
* signal processing.
*
* REVISIT: Because there is only one copy of these save areas,
* only a single signal handler can be active. This precludes
* queuing of signal actions. As a result, signals received while
* another signal handler is executing will be ignored!
*/
uint32_t saved_eip;