Skip to content

Commit 816638e

Browse files
author
Man Cao
committedApr 2, 2024
8329352: Remove dead code in splashscreen_sys.c
Reviewed-by: jiefu, prr
1 parent 3d22838 commit 816638e

File tree

1 file changed

+1
-32
lines changed

1 file changed

+1
-32
lines changed
 

‎src/java.desktop/unix/native/libsplashscreen/splashscreen_sys.c

+1-32
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2005, 2021, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2005, 2024, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -378,33 +378,6 @@ sendctl(Splash * splash, char code) {
378378
}
379379
}
380380

381-
int
382-
HandleError(Display * disp, XErrorEvent * err) {
383-
// silently ignore non-fatal errors
384-
/*
385-
char msg[0x1000];
386-
char buf[0x1000];
387-
XGetErrorText(disp, err->error_code, msg, sizeof(msg));
388-
fprintf(stderr, "Xerror %s, XID %x, ser# %d\n", msg, err->resourceid,
389-
err->serial);
390-
snprintf(buf, sizeof(buf), "%d", err->request_code);
391-
XGetErrorDatabaseText(disp, "XRequest", buf, "Unknown", msg, sizeof(msg));
392-
fprintf(stderr, "Major opcode %d (%s)\n", err->request_code, msg);
393-
if (err->request_code > 128) {
394-
fprintf(stderr, "Minor opcode %d\n", err->minor_code);
395-
}
396-
*/
397-
return 0;
398-
}
399-
400-
int
401-
HandleIOError(Display * display) {
402-
// for really bad errors, we should exit the thread we're on
403-
SplashCleanup(SplashGetInstance());
404-
pthread_exit(NULL);
405-
return 0;
406-
}
407-
408381
int
409382
SplashInitPlatform(Splash * splash) {
410383
int shapeVersionMajor, shapeVersionMinor;
@@ -417,10 +390,6 @@ SplashInitPlatform(Splash * splash) {
417390

418391
pthread_mutex_init(&splash->lock, NULL);
419392

420-
// We should not ignore any errors.
421-
//XSetErrorHandler(HandleError);
422-
// XSetIOErrorHandler(HandleIOError);
423-
XSetIOErrorHandler(NULL);
424393
splash->display = XOpenDisplay(NULL);
425394
if (!splash->display) {
426395
splash->isVisible = -1;

0 commit comments

Comments
 (0)
Please sign in to comment.