File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ libqthread_la_SOURCES = \
35
35
touch.c \
36
36
teams.c
37
37
38
- EXTRA_DIST = alloc/
38
+ EXTRA_DIST =
39
39
40
40
if COMPILE_LF_HASH
41
41
libqthread_la_SOURCES += lf_hashmap.c
@@ -106,6 +106,8 @@ EXTRA_DIST += \
106
106
barrier/array.c \
107
107
barrier/log.c \
108
108
barrier/sinc.c \
109
+ alloc/base.c \
110
+ alloc/chapel.c \
109
111
affinity/common.c \
110
112
affinity/hwloc.c \
111
113
affinity/binders.c \
Original file line number Diff line number Diff line change @@ -13,6 +13,8 @@ static QINLINE int getpagesize()
13
13
}
14
14
#endif
15
15
16
+ #include <qthread/qthread-int.h> /* for uint_fast16_t */
17
+
16
18
#include "chpl-mem-impl.h"
17
19
18
20
void * qt_malloc (size_t size ){
Original file line number Diff line number Diff line change @@ -1881,15 +1881,15 @@ unsigned API_FUNC qthread_size_tasklocal(void)
1881
1881
return f -> rdata -> tasklocal_size ? f -> rdata -> tasklocal_size : qlib -> qthread_tasklocal_size ;
1882
1882
} /*}}}*/
1883
1883
1884
- void * API_FUNC qthread_tos (void )
1884
+ API_FUNC void * qthread_tos (void )
1885
1885
{
1886
1886
const qthread_t * f = qthread_internal_self ();
1887
1887
1888
1888
return f -> rdata -> stack ;
1889
1889
}
1890
1890
1891
1891
1892
- void * API_FUNC qthread_bos (void )
1892
+ API_FUNC void * qthread_bos (void )
1893
1893
{
1894
1894
const qthread_t * f = qthread_internal_self ();
1895
1895
You can’t perform that action at this time.
0 commit comments