| 1037 | #endif |
| 1038 | |
| 1039 | void |
| 1040 | xmlThrDefSetGenericErrorFunc(void *ctx, xmlGenericErrorFunc handler) { |
| 1041 | xmlMutexLock(&xmlThrDefMutex); |
| 1042 | xmlGenericErrorContextThrDef = ctx; |
| 1043 | if (handler != NULL) |
| 1044 | xmlGenericErrorThrDef = handler; |
| 1045 | else |
| 1046 | xmlGenericErrorThrDef = xmlGenericErrorDefaultFunc; |
| 1047 | xmlMutexUnlock(&xmlThrDefMutex); |
| 1048 | } |
| 1049 | |
| 1050 | void |
| 1051 | xmlThrDefSetStructuredErrorFunc(void *ctx, xmlStructuredErrorFunc handler) { |
nothing calls this directly
no test coverage detected