util/u_process: add util_get_process_exec_path
[mesa.git] / src / util / u_process.h
index 77f7cb1cbef0de09d404e71e1af7f32ef4ad7008..88b80e5ec129f5bcc76603517f53f13f396ff061 100644 (file)
 #ifndef PROCESS_H
 #define PROCESS_H
 
+#include <stddef.h>
+
 const char *
 util_get_process_name(void);
 
+size_t
+util_get_process_exec_path(char* process_path, size_t len);
+
 #endif