1
1
/*
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.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
@@ -378,33 +378,6 @@ sendctl(Splash * splash, char code) {
378
378
}
379
379
}
380
380
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
-
408
381
int
409
382
SplashInitPlatform (Splash * splash ) {
410
383
int shapeVersionMajor , shapeVersionMinor ;
@@ -417,10 +390,6 @@ SplashInitPlatform(Splash * splash) {
417
390
418
391
pthread_mutex_init (& splash -> lock , NULL );
419
392
420
- // We should not ignore any errors.
421
- //XSetErrorHandler(HandleError);
422
- // XSetIOErrorHandler(HandleIOError);
423
- XSetIOErrorHandler (NULL );
424
393
splash -> display = XOpenDisplay (NULL );
425
394
if (!splash -> display ) {
426
395
splash -> isVisible = -1 ;
0 commit comments