mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-23 12:34:32 +02:00
Merge
This commit is contained in:
commit
9288ff53e7
1316 changed files with 58581 additions and 14455 deletions
|
@ -792,7 +792,11 @@ const char* os::Posix::describe_sa_flags(int flags, char* buffer, size_t size) {
|
|||
strncpy(buffer, "none", size);
|
||||
|
||||
const struct {
|
||||
int i;
|
||||
// NB: i is an unsigned int here because SA_RESETHAND is on some
|
||||
// systems 0x80000000, which is implicitly unsigned. Assignining
|
||||
// it to an int field would be an overflow in unsigned-to-signed
|
||||
// conversion.
|
||||
unsigned int i;
|
||||
const char* s;
|
||||
} flaginfo [] = {
|
||||
{ SA_NOCLDSTOP, "SA_NOCLDSTOP" },
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue