blob: d3c6272fe195dda0807318123a9b357de034df0f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
Index: b/usr/src/lib/libc/inc/thr_uberdata.h
===================================================================
--- a/usr/src/lib/libc/inc/thr_uberdata.h
+++ b/usr/src/lib/libc/inc/thr_uberdata.h
@@ -55,7 +55,6 @@
#include <sys/priocntl.h>
#include <thread_db.h>
#include <setjmp.h>
-#include "libc_int.h"
#include "tdb_agent.h"
#include "thr_debug.h"
Index: b/usr/src/lib/libc/port/threads/thr.c
===================================================================
--- a/usr/src/lib/libc/port/threads/thr.c
+++ b/usr/src/lib/libc/port/threads/thr.c
@@ -33,6 +33,7 @@
#include <sys/uio.h>
#include <ctype.h>
#include "libc.h"
+#include "libc_int.h"
/*
* These symbols should not be exported from libc, but
Index: b/usr/src/lib/libc/port/threads/thread_interface.c
===================================================================
--- a/usr/src/lib/libc/port/threads/thread_interface.c
+++ b/usr/src/lib/libc/port/threads/thread_interface.c
@@ -26,6 +26,7 @@
#include "lint.h"
#include "thr_uberdata.h"
+#include "libc_int.h"
extern int _ti_bind_guard();
extern int _ti_bind_clear();
Index: b/usr/src/lib/libc/port/threads/tls.c
===================================================================
--- a/usr/src/lib/libc/port/threads/tls.c
+++ b/usr/src/lib/libc/port/threads/tls.c
@@ -26,6 +26,7 @@
#include "lint.h"
#include "thr_uberdata.h"
+#include "libc_int.h"
#define MIN_MOD_SLOTS 8
|