Restore member fields sigval_int and sigval_ptr, this unbreaks compilation
of some old programs. Since sigval is union type, this change will not have binary compatibility problem. MFC: after 3 days Discussed with: rwatson, glebius
This commit is contained in:
parent
7e42e29b9b
commit
2f294b2a61
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=174003
@ -153,6 +153,9 @@ union sigval {
|
|||||||
/* Members as suggested by Annex C of POSIX 1003.1b. */
|
/* Members as suggested by Annex C of POSIX 1003.1b. */
|
||||||
int sival_int;
|
int sival_int;
|
||||||
void *sival_ptr;
|
void *sival_ptr;
|
||||||
|
/* 6.0 compatibility */
|
||||||
|
int sigval_int;
|
||||||
|
void *sigval_ptr;
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user