| 50 | const char *tlsErrorMsg = "*** DMTCP: Error restoring TLS information\n."; |
| 51 | |
| 52 | static int glibcMajorVersion() |
| 53 | { |
| 54 | static int major = 0; |
| 55 | if (major == 0) { |
| 56 | major = (int) strtol(gnu_get_libc_version(), NULL, 10); |
| 57 | JASSERT(major == 2); |
| 58 | } |
| 59 | return major; |
| 60 | } |
| 61 | |
| 62 | static int glibcMinorVersion() |
| 63 | { |
no outgoing calls
no test coverage detected