hex

hex.git
git clone git://git.lenczewski.org/hex.git
Log | Files | Refs

threadpool.c (274B)


      1 #include "hexes.h"
      2 
      3 bool
      4 threadpool_init(struct threadpool *self, u32 threads)
      5 {
      6 	assert(self);
      7 
      8 	(void) self;
      9 	(void) threads;
     10 
     11 	// TODO: implement me
     12 
     13 	return true;
     14 }
     15 
     16 void
     17 threadpool_free(struct threadpool *self)
     18 {
     19 	assert(self);
     20 
     21 	(void) self;
     22 
     23 	// TODO: implement me
     24 }