@@ -292,6 +292,8 @@ makeDefaultConfig(JNIEnv *env, int screen) {
292
292
293
293
static void
294
294
getAllConfigs (JNIEnv * env , int screen , AwtScreenDataPtr screenDataPtr ) {
295
+ // NB: should be invoked only while holding the AWT lock
296
+ DASSERT (screen >= 0 && screen < awt_numScreens );
295
297
296
298
int i ;
297
299
int n8p = 0 , n12p = 0 , n8s = 0 , n8gs = 0 , n8sg = 0 , n1sg = 0 , nTrue = 0 ;
@@ -314,8 +316,6 @@ getAllConfigs (JNIEnv *env, int screen, AwtScreenDataPtr screenDataPtr) {
314
316
xinawareScreen = screen ;
315
317
}
316
318
317
- AWT_LOCK ();
318
-
319
319
viTmp .screen = xinawareScreen ;
320
320
321
321
viTmp .depth = 8 ;
@@ -372,7 +372,6 @@ getAllConfigs (JNIEnv *env, int screen, AwtScreenDataPtr screenDataPtr) {
372
372
if (graphicsConfigs == NULL ) {
373
373
JNU_ThrowOutOfMemoryError ((JNIEnv * )JNU_GetEnv (jvm , JNI_VERSION_1_2 ),
374
374
NULL );
375
- AWT_UNLOCK ();
376
375
return ;
377
376
}
378
377
@@ -382,6 +381,9 @@ getAllConfigs (JNIEnv *env, int screen, AwtScreenDataPtr screenDataPtr) {
382
381
* been reset, so we need to recreate the default config here.
383
382
*/
384
383
screenDataPtr -> defaultConfig = makeDefaultConfig (env , screen );
384
+ if (screenDataPtr -> defaultConfig == NULL ) {
385
+ return ;
386
+ }
385
387
}
386
388
387
389
defaultConfig = screenDataPtr -> defaultConfig ;
@@ -581,7 +583,6 @@ getAllConfigs (JNIEnv *env, int screen, AwtScreenDataPtr screenDataPtr) {
581
583
XFree (pVI1sg );
582
584
if (nTrue != 0 )
583
585
XFree (pVITrue );
584
- AWT_UNLOCK ();
585
586
}
586
587
587
588
/*
@@ -770,6 +771,7 @@ JNIEnv *env, jobject this)
770
771
}
771
772
772
773
static void ensureConfigsInited (JNIEnv * env , int screen ) {
774
+ // NB: should be invoked only while holding the AWT lock
773
775
if (x11Screens [screen ].numConfigs == 0 ) {
774
776
if (env == NULL ) {
775
777
env = (JNIEnv * )JNU_GetEnv (jvm , JNI_VERSION_1_2 );
@@ -780,6 +782,8 @@ static void ensureConfigsInited(JNIEnv* env, int screen) {
780
782
781
783
AwtGraphicsConfigDataPtr
782
784
getDefaultConfig (int screen ) {
785
+ // NB: should be invoked only while holding the AWT lock
786
+ DASSERT (screen >= 0 && screen < awt_numScreens );
783
787
ensureConfigsInited (NULL , screen );
784
788
return x11Screens [screen ].defaultConfig ;
785
789
}
@@ -973,11 +977,11 @@ JNIEXPORT jint JNICALL
973
977
Java_sun_awt_X11GraphicsDevice_getNumConfigs (
974
978
JNIEnv * env , jobject this , jint screen )
975
979
{
976
- AWT_LOCK ();
980
+ // NB: should be invoked only while holding the AWT lock
981
+ DASSERT (screen >= 0 && screen < awt_numScreens );
977
982
ensureConfigsInited (env , screen );
978
- int configs = x11Screens [screen ].numConfigs ;
979
- AWT_UNLOCK ();
980
- return configs ;
983
+ return x11Screens [screen ].numConfigs ;
984
+
981
985
}
982
986
983
987
/*
@@ -989,12 +993,11 @@ JNIEXPORT jint JNICALL
989
993
Java_sun_awt_X11GraphicsDevice_getConfigVisualId (
990
994
JNIEnv * env , jobject this , jint index , jint screen )
991
995
{
992
- int visNum ;
993
- AWT_LOCK ( );
996
+ // NB: should be invoked only while holding the AWT lock
997
+ DASSERT ( screen >= 0 && screen < awt_numScreens );
994
998
ensureConfigsInited (env , screen );
995
999
jint id = (jint ) (index == 0 ? x11Screens [screen ].defaultConfig
996
1000
: x11Screens [screen ].configs [index ])-> awt_visInfo .visualid ;
997
- AWT_UNLOCK ();
998
1001
return id ;
999
1002
}
1000
1003
@@ -1007,12 +1010,11 @@ JNIEXPORT jint JNICALL
1007
1010
Java_sun_awt_X11GraphicsDevice_getConfigDepth (
1008
1011
JNIEnv * env , jobject this , jint index , jint screen )
1009
1012
{
1010
- int visNum ;
1011
- AWT_LOCK ( );
1013
+ // NB: should be invoked only while holding the AWT lock
1014
+ DASSERT ( screen >= 0 && screen < awt_numScreens );
1012
1015
ensureConfigsInited (env , screen );
1013
1016
jint depth = (jint ) (index == 0 ? x11Screens [screen ].defaultConfig
1014
1017
: x11Screens [screen ].configs [index ])-> awt_visInfo .depth ;
1015
- AWT_UNLOCK ();
1016
1018
return depth ;
1017
1019
}
1018
1020
@@ -1025,12 +1027,11 @@ JNIEXPORT jint JNICALL
1025
1027
Java_sun_awt_X11GraphicsDevice_getConfigColormap (
1026
1028
JNIEnv * env , jobject this , jint index , jint screen )
1027
1029
{
1028
- int visNum ;
1029
- AWT_LOCK ( );
1030
+ // NB: should be invoked only while holding the AWT lock
1031
+ DASSERT ( screen >= 0 && screen < awt_numScreens );
1030
1032
ensureConfigsInited (env , screen );
1031
1033
jint colormap = (jint ) (index == 0 ? x11Screens [screen ].defaultConfig
1032
1034
: x11Screens [screen ].configs [index ])-> awt_cmap ;
1033
- AWT_UNLOCK ();
1034
1035
return colormap ;
1035
1036
}
1036
1037
@@ -1140,8 +1141,10 @@ JNIEXPORT void JNICALL
1140
1141
Java_sun_awt_X11GraphicsConfig_init (
1141
1142
JNIEnv * env , jobject this , jint visualNum , jint screen )
1142
1143
{
1144
+ // NB: should be invoked only while holding the AWT lock
1145
+ DASSERT (screen >= 0 && screen < awt_numScreens );
1146
+
1143
1147
AwtGraphicsConfigData * adata = NULL ;
1144
- AWT_LOCK ();
1145
1148
AwtScreenData asd = x11Screens [screen ];
1146
1149
int i , n ;
1147
1150
int depth ;
@@ -1163,7 +1166,6 @@ JNIEnv *env, jobject this, jint visualNum, jint screen)
1163
1166
1164
1167
/* If didn't find the visual, throw an exception... */
1165
1168
if (adata == (AwtGraphicsConfigData * ) NULL ) {
1166
- AWT_UNLOCK ();
1167
1169
JNU_ThrowIllegalArgumentException (env , "Unknown Visual Specified" );
1168
1170
return ;
1169
1171
}
@@ -1182,7 +1184,6 @@ JNIEnv *env, jobject this, jint visualNum, jint screen)
1182
1184
(* env )-> SetIntField (env , this , x11GraphicsConfigIDs .bitsPerPixel ,
1183
1185
(jint )tempImage -> bits_per_pixel );
1184
1186
XDestroyImage (tempImage );
1185
- AWT_UNLOCK ();
1186
1187
}
1187
1188
1188
1189
/*
1 commit comments
openjdk-notifier[bot] commentedon Mar 14, 2025
Review
Issues