util: Move os_misc to util

this is needed by u_debug

Tested-by: Brian Paul <brianp@vmware.com>
Reviewed-by: Marek Olšák <marek.olsak@amd.com>
This commit is contained in:
Dylan Baker 2018-10-29 11:21:07 -07:00
parent f1f104e548
commit 2fd5dff7e7
12 changed files with 10 additions and 10 deletions

View file

@ -106,8 +106,6 @@ C_SOURCES := \
os/os_memory_debug.h \
os/os_memory_stdc.h \
os/os_memory.h \
os/os_misc.c \
os/os_misc.h \
os/os_mman.h \
os/os_process.c \
os/os_process.h \

View file

@ -126,8 +126,6 @@ files_libgallium = files(
'os/os_memory_debug.h',
'os/os_memory_stdc.h',
'os/os_memory.h',
'os/os_misc.c',
'os/os_misc.h',
'os/os_mman.h',
'os/os_process.c',
'os/os_process.h',

View file

@ -39,7 +39,7 @@
#define U_DEBUG_H_
#include "os/os_misc.h"
#include "util/os_misc.h"
#if defined(PIPE_OS_HAIKU)
/* Haiku provides debug_printf in libroot with OS.h */

View file

@ -27,7 +27,7 @@
#include "draw/draw_context.h"
#include "os/os_misc.h"
#include "util/os_misc.h"
#include "util/u_format.h"
#include "util/u_format_s3tc.h"
#include "util/u_inlines.h"

View file

@ -38,7 +38,7 @@
#include "draw/draw_context.h"
#include "gallivm/lp_bld_type.h"
#include "os/os_misc.h"
#include "util/os_misc.h"
#include "util/os_time.h"
#include "lp_texture.h"
#include "lp_fence.h"

View file

@ -31,7 +31,7 @@
#include "util/u_format_s3tc.h"
#include "util/u_screen.h"
#include "util/u_video.h"
#include "os/os_misc.h"
#include "util/os_misc.h"
#include "util/os_time.h"
#include "pipe/p_defines.h"
#include "pipe/p_screen.h"

View file

@ -22,7 +22,7 @@
* IN THE SOFTWARE.
*/
#include "os/os_misc.h"
#include "util/os_misc.h"
#include "pipe/p_defines.h"
#include "pipe/p_screen.h"
#include "pipe/p_state.h"

View file

@ -22,7 +22,7 @@
* IN THE SOFTWARE.
*/
#include "os/os_misc.h"
#include "util/os_misc.h"
#include "pipe/p_defines.h"
#include "pipe/p_screen.h"
#include "pipe/p_state.h"

View file

@ -27,6 +27,8 @@ MESA_UTIL_FILES := \
mesa-sha1.h \
os_time.c \
os_time.h \
os_misc.c \
os_misc.h \
u_process.c \
u_process.h \
sha1/sha1.c \

View file

@ -51,6 +51,8 @@ files_mesa_util = files(
'mesa-sha1.h',
'os_time.c',
'os_time.h',
'os_misc.c',
'os_misc.h',
'u_process.c',
'u_process.h',
'sha1/sha1.c',