From 56eb1acb9e7792faedf8c23d4e1435f1ec2b36b8 Mon Sep 17 00:00:00 2001 From: Arnon Gilboa Date: Tue, 17 Nov 2009 16:47:41 +0200 Subject: spice: add [pid:tid] to log lines --- client/x11/platform.cpp | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'client/x11/platform.cpp') diff --git a/client/x11/platform.cpp b/client/x11/platform.cpp index 10d621ba..217664a4 100644 --- a/client/x11/platform.cpp +++ b/client/x11/platform.cpp @@ -223,6 +223,17 @@ void Platform::get_temp_dir(std::string& path) path = "/tmp/"; } +uint64_t Platform::get_process_id() +{ + static uint64_t pid = uint64_t(getpid()); + return pid; +} + +uint64_t Platform::get_thread_id() +{ + return uint64_t(syscall(SYS_gettid)); +} + void Platform::msleep(unsigned int millisec) { usleep(millisec * 1000); -- cgit