Vincent Torri pointed out that char bitfields are undefined in C89... and he

is correct.


SVN revision: 32160
This commit is contained in:
Brett Nash 2007-10-25 05:55:07 +00:00
parent 3a4c71f293
commit 06e02b3f6b
1 changed files with 2 additions and 2 deletions

View File

@ -185,8 +185,8 @@ extern "C" {
int exit_code; /**< The exit code of the process */
Ecore_Exe *exe; /**< The handle to the exited process, or NULL if not found */
int exit_signal; /** < The signal that caused the process to exit */
unsigned char exited : 1; /** < set to 1 if the process exited of its own accord */
unsigned char signalled : 1; /** < set to 1 id the process exited due to uncaught signal */
unsigned int exited : 1; /** < set to 1 if the process exited of its own accord */
unsigned int signalled : 1; /** < set to 1 id the process exited due to uncaught signal */
void *ext_data; /**< Extension data - not used */
siginfo_t data; /**< Signal info */
};