--- old/src/java.base/macosx/native/libjli/java_md_macosx.c 2017-06-27 15:18:34.000000000 -0700 +++ new/src/java.base/macosx/native/libjli/java_md_macosx.c 2017-06-27 15:18:34.000000000 -0700 @@ -290,8 +290,6 @@ */ static void *apple_main (void *arg) { - objc_registerThreadWithCollector(); - if (main_fptr == NULL) { #ifdef STATIC_BUILD extern int main(int argc, char **argv); @@ -772,7 +770,7 @@ void RegisterThread() { - objc_registerThreadWithCollector(); + // stubbed out for windows and *nixes. } static void --- old/src/java.desktop/macosx/native/libosxapp/NSApplicationAWT.m 2017-06-27 15:18:35.000000000 -0700 +++ new/src/java.desktop/macosx/native/libosxapp/NSApplicationAWT.m 2017-06-27 15:18:35.000000000 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011, 2015, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2011, 2017, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -332,7 +332,7 @@ #define DRAGMASK (NSMouseMovedMask | NSLeftMouseDraggedMask | NSRightMouseDownMask | NSRightMouseDraggedMask | NSLeftMouseUpMask | NSRightMouseUpMask | NSFlagsChangedMask | NSKeyDownMask) -- (NSEvent *)nextEventMatchingMask:(NSUInteger)mask untilDate:(NSDate *)expiration inMode:(NSString *)mode dequeue:(BOOL)deqFlag { +- (NSEvent *)nextEventMatchingMask:(NSEventMask)mask untilDate:(NSDate *)expiration inMode:(NSString *)mode dequeue:(BOOL)deqFlag { if (mask == DRAGMASK && [((NSString *)kCFRunLoopDefaultMode) isEqual:mode]) { postEventDuringEventSynthesis = YES; } @@ -449,4 +449,3 @@ } } } - --- old/src/java.desktop/macosx/native/libsplashscreen/splashscreen_sys.m 2017-06-27 15:18:36.000000000 -0700 +++ new/src/java.desktop/macosx/native/libsplashscreen/splashscreen_sys.m 2017-06-27 15:18:35.000000000 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011, 2016, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2011, 2017, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -394,8 +394,6 @@ void * SplashScreenThread(void *param) { - objc_registerThreadWithCollector(); - NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; Splash *splash = (Splash *) param; --- old/src/java.desktop/share/native/libjavajpeg/jdhuff.c 2017-06-27 15:18:36.000000000 -0700 +++ new/src/java.desktop/share/native/libjavajpeg/jdhuff.c 2017-06-27 15:18:36.000000000 -0700 @@ -455,10 +455,15 @@ 0x0100, 0x0200, 0x0400, 0x0800, 0x1000, 0x2000, 0x4000 }; static const int extend_offset[16] = /* entry n is (-1 << n) + 1 */ - { 0, ((-1)<<1) + 1, ((-1)<<2) + 1, ((-1)<<3) + 1, ((-1)<<4) + 1, - ((-1)<<5) + 1, ((-1)<<6) + 1, ((-1)<<7) + 1, ((-1)<<8) + 1, - ((-1)<<9) + 1, ((-1)<<10) + 1, ((-1)<<11) + 1, ((-1)<<12) + 1, - ((-1)<<13) + 1, ((-1)<<14) + 1, ((-1)<<15) + 1 }; + { 0, + (int)(((unsigned)(~0)<<1) + 1), (int)(((unsigned)(~0)<<2) + 1), + (int)(((unsigned)(~0)<<3) + 1), (int)(((unsigned)(~0)<<4) + 1), + (int)(((unsigned)(~0)<<5) + 1), (int)(((unsigned)(~0)<<6) + 1), + (int)(((unsigned)(~0)<<7) + 1), (int)(((unsigned)(~0)<<8) + 1), + (int)(((unsigned)(~0)<<9) + 1), (int)(((unsigned)(~0)<<10) + 1), + (int)(((unsigned)(~0)<<11) + 1), (int)(((unsigned)(~0)<<12) + 1), + (int)(((unsigned)(~0)<<13) + 1), (int)(((unsigned)(~0)<<14) + 1), + (int)(((unsigned)(~0)<<15) + 1) }; #endif /* AVOID_TABLES */ --- old/src/java.desktop/share/native/libjavajpeg/jdphuff.c 2017-06-27 15:18:37.000000000 -0700 +++ new/src/java.desktop/share/native/libjavajpeg/jdphuff.c 2017-06-27 15:18:37.000000000 -0700 @@ -215,10 +215,15 @@ 0x0100, 0x0200, 0x0400, 0x0800, 0x1000, 0x2000, 0x4000 }; static const int extend_offset[16] = /* entry n is (-1 << n) + 1 */ - { 0, ((-1)<<1) + 1, ((-1)<<2) + 1, ((-1)<<3) + 1, ((-1)<<4) + 1, - ((-1)<<5) + 1, ((-1)<<6) + 1, ((-1)<<7) + 1, ((-1)<<8) + 1, - ((-1)<<9) + 1, ((-1)<<10) + 1, ((-1)<<11) + 1, ((-1)<<12) + 1, - ((-1)<<13) + 1, ((-1)<<14) + 1, ((-1)<<15) + 1 }; + { 0, + (int)(((unsigned)(~0)<<1) + 1), (int)(((unsigned)(~0)<<2) + 1), + (int)(((unsigned)(~0)<<3) + 1), (int)(((unsigned)(~0)<<4) + 1), + (int)(((unsigned)(~0)<<5) + 1), (int)(((unsigned)(~0)<<6) + 1), + (int)(((unsigned)(~0)<<7) + 1), (int)(((unsigned)(~0)<<8) + 1), + (int)(((unsigned)(~0)<<9) + 1), (int)(((unsigned)(~0)<<10) + 1), + (int)(((unsigned)(~0)<<11) + 1), (int)(((unsigned)(~0)<<12) + 1), + (int)(((unsigned)(~0)<<13) + 1), (int)(((unsigned)(~0)<<14) + 1), + (int)(((unsigned)(~0)<<15) + 1) }; #endif /* AVOID_TABLES */