Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm working on a small application and I need to find the PID of a process given the X11 window ID of its main window or child windows. I saw examples for doing such a conversion using _NET_WM_PID, but I cannot figure out how to do it without using it. The reason for not using _NET_WM_PID is that it's not implemented in all the available window managers and my application needs to work on any one of them (or at least on most of them). Could somebody help me please and give me some suggestion/directions on how to solve this issue? Thank you!

share|improve this question
See also What process created this X11 window? at Unix Stack Exchange. Note that _NET_WM_PID is set by the application, not by the window manager. – Gilles Jan 8 '11 at 12:34

2 Answers

up vote 6 down vote accepted

In general, it's not possible to find out the PID of a process that created a window. It may be that the process is running remotely on a machine, and it may be that the machine doesn't even have the notion of processes and PIDs.

If you don't trust anybody stored this information when the client was originally created, you will need to trace the connections yourself. Find out what kind of connection (socket etc) the client was using, find out where that connection ends, and find out which process holds that end. How to do that (and whether it is possible at all) is highly operating system dependent.

share|improve this answer
I see that the only way to solve it is using NET_WM_PID. In this case how can I detect if NET_WM_PID is available? – crazybyte Jul 15 '09 at 14:51
1  
In what programming environment? "xprop -id wid _NET_WM_PID" should do. – Martin v. Löwis Jul 15 '09 at 18:21
Thank you for your reply. I'm using C and I managed to solve the availability issue. The XGetWindowProperty which is used to read the NET_WM_PID property returns None if the property isn't available. – crazybyte Jul 15 '09 at 19:43

Back in 2004, Harald Welte posted a code snippet that wraps the XCreateWindow() call via LD_PRELOAD and stores the process id in _NET_WM_PID. This makes sure that each window created has a useful _NET_WM_PID entry.

http://www.mail-archive.com/devel@xfree86.org/msg05806.html

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.