Fix: cache the result of getpid() internally
[lttng-ust.git] / liblttng-ust / lttng-context-vpid.c
index 5e5ed145d944adf08be61755eaa32faefe3e52b4..53fb314b8c0da1bdf353f00c59c953879b4ed150 100644 (file)
 #include <lttng/ust-tracer.h>
 #include <lttng/ringbuffer-config.h>
 
-#ifdef __linux__
-static inline
-pid_t wrapper_getpid(void)
-{
-       return getpid();
-}
-
-void lttng_context_vpid_reset(void)
-{
-}
-#else
 /*
  * We cache the result to ensure we don't trigger a system call for
  * each event.
@@ -60,7 +49,6 @@ void lttng_context_vpid_reset(void)
 {
        cached_vpid = 0;
 }
-#endif
 
 static
 size_t vpid_get_size(struct lttng_ctx_field *field, size_t offset)
This page took 0.025054 seconds and 4 git commands to generate.