aboutsummaryrefslogtreecommitdiffstats
path: root/CommonLibs/debug.c
diff options
context:
space:
mode:
Diffstat (limited to 'CommonLibs/debug.c')
-rw-r--r--CommonLibs/debug.c24
1 files changed, 0 insertions, 24 deletions
diff --git a/CommonLibs/debug.c b/CommonLibs/debug.c
index 7ee8184..08954f5 100644
--- a/CommonLibs/debug.c
+++ b/CommonLibs/debug.c
@@ -21,18 +21,6 @@
* See the COPYING file in the main directory for details.
*/
-#include "config.h"
-
-/* If HAVE_GETTID, then "_GNU_SOURCE" may need to be defined to use gettid() */
-#if HAVE_GETTID
-#define _GNU_SOURCE
-#endif
-
-#include <sys/types.h>
-#include <unistd.h>
-#include <sys/syscall.h>
-#include "config.h"
-
#include <osmocom/core/logging.h>
#include <osmocom/core/utils.h>
#include "debug.h"
@@ -93,15 +81,3 @@ const struct log_info log_info = {
.cat = default_categories,
.num_cat = ARRAY_SIZE(default_categories),
};
-
-pid_t my_gettid(void)
-{
-#if HAVE_GETTID
- return gettid();
-#elif defined(LINUX) && defined(__NR_gettid)
- return (pid_t) syscall(__NR_gettid);
-#else
- #pragma message ("use pid as tid")
- return getpid();
-#endif
-}