util: move process.[ch] to u_process.[ch]
authorDylan Baker <dylan@pnwbakers.com>
Tue, 10 Jul 2018 22:00:13 +0000 (15:00 -0700)
committerDylan Baker <dylan@pnwbakers.com>
Wed, 1 Aug 2018 19:47:16 +0000 (12:47 -0700)
commit17f49950da91137366910183f616d15b8bbf580c
tree4d3c1dbcf8c588a24adccba262d2d6dd4e9b5130
parentcb6b241c301d5352a5bcaab52bbfaf89e700b2b2
util: move process.[ch] to u_process.[ch]

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 <dylan.c.baker@intel.com>
Reviewed-by: Marek Olšák <marek.olsak@amd.com>
src/gallium/auxiliary/os/os_process.c
src/util/Makefile.sources
src/util/meson.build
src/util/process.c [deleted file]
src/util/process.h [deleted file]
src/util/u_process.c [new file with mode: 0644]
src/util/u_process.h [new file with mode: 0644]
src/util/u_queue.c
src/util/xmlconfig.c