Changeset 457 for trunk/libs/libpthread
- Timestamp:
- Aug 2, 2018, 11:47:13 AM (6 years ago)
- Location:
- trunk/libs/libpthread
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/libs/libpthread/Makefile
r445 r457 9 9 endif 10 10 11 SRCS = pthread.c 12 13 OBJS = $(addprefix build/, $(SRCS:.c=.o)) \ 11 OBJS = build/pthread.o \ 14 12 $(HAL_ARCH)/build/core/hal_user.o 15 13 … … 37 35 38 36 headers: build 39 cp $(SRCS:.c=.h)build/include/.37 cp pthread.h build/include/. 40 38 41 39 -
trunk/libs/libpthread/pthread.c
r445 r457 1 1 /* 2 * pthread.c - User leve <pthread> library implementation.2 * pthread.c - User level <pthread> library implementation. 3 3 * 4 4 * Author Alain Greiner (2016,2017,2018) … … 23 23 24 24 #include <hal_user.h> 25 #include <hal_ types.h>25 #include <hal_shared_types.h> 26 26 #include <stdio.h> 27 27 #include <stdlib.h> 28 28 #include <pthread.h> 29 #include <shared_pthread.h> 29 30 #include <almosmkh.h> 30 31 #include <syscalls_numbers.h> -
trunk/libs/libpthread/pthread.h
r445 r457 25 25 #define _PTHREAD_H_ 26 26 27 ////////////////////////////////////////////////////////////////////////////////////////////// 28 // POSIX Threads related functions (including barriers and mutexes) 29 ////////////////////////////////////////////////////////////////////////////////////////////// 30 27 31 #include <shared_pthread.h> 28 29 //////////////////////////////////////////////////////////////////////////////////////////////30 // POSIX Threads related functions31 //////////////////////////////////////////////////////////////////////////////////////////////32 32 33 33 /*********************************************************************************************
Note: See TracChangeset
for help on using the changeset viewer.