aboutsummaryrefslogtreecommitdiffstats
path: root/src/util/u_process.h
Commit message (Collapse)AuthorAgeFilesLines
* util/u_process: add util_get_process_exec_pathPierre-Eric Pelloux-Prayer2020-03-241-0/+5
| | | | | Reviewed-by: Marek Olšák <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4181>
* util: move process.[ch] to u_process.[ch]Dylan Baker2018-08-011-0/+34
On windows process.h is a system provided header, and it's required in include/c11/threads_win32.h. This header interferes with searching for that header, and results in windows build warnings with scons, but errors in meson which doesn't allow implicit function declarations. Just rename process to u_process, which follows the style of utils anyway. Fixes: 2e1e6511f76370870b5cde10caa9ca3b6d0dc65f ("util: extract get_process_name from xmlconfig.c") Signed-off-by: Dylan Baker <[email protected]> Reviewed-by: Marek Olšák <[email protected]>