Skip to content
This repository has been archived by the owner on Dec 17, 2018. It is now read-only.

Commit

Permalink
syntactic cleanup .hs
Browse files Browse the repository at this point in the history
  • Loading branch information
DylanLukes committed Oct 14, 2011
1 parent 28cbda4 commit b747763
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions include/thread.h
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,7 @@ int thread_barrier_init(thread_barrier_t* barrier, unsigned short nthreads);
void thread_barrier_wait(thread_barrier_t* barrier);
void thread_barrier_free(thread_barrier_t* barrier);

int thread_create(thread_object_t* thread,
thread_func_t entrypoint, void* data,
unsigned long flags, size_t pool_size);
int thread_create(thread_object_t* thread, thread_func_t entrypoint, void* data, unsigned long flags, size_t pool_size);

thread_object_t thread_self(void);

Expand Down

0 comments on commit b747763

Please sign in to comment.