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 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
|
// Copyright (C) 2003 Davis E. King (davis@dlib.net)
// License: Boost Software License See LICENSE.txt for the full license.
#ifndef DLIB_THREADS_KERNEL_1_CPp_
#define DLIB_THREADS_KERNEL_1_CPp_
#include "../platform.h"
#ifdef WIN32
#include "threads_kernel_1.h"
#include <process.h>
namespace dlib
{
namespace threads_kernel_shared_helpers
{
// -----------------------------------------------------------------------------------
struct info
{
void* param;
void (*funct)(void*);
};
// -----------------------------------------------------------------------------------
unsigned int __stdcall thread_starter (
void* param
)
{
info* alloc_p = static_cast<info*>(param);
info p = *alloc_p;
delete alloc_p;
p.funct(p.param);
return 0;
}
// -----------------------------------------------------------------------------------
bool spawn_thread (
void (*funct)(void*),
void* param
)
{
info* p;
try { p = new info; }
catch (...) { return false; }
p->funct = funct;
p->param = param;
unsigned int garbage;
HANDLE thandle = (HANDLE)_beginthreadex (NULL,0,thread_starter,p,0,&garbage);
// make thread and add it to the pool
// return false if _beginthreadex didn't work
if ( thandle == 0)
{
delete p;
return false;
}
// throw away the thread handle
CloseHandle(thandle);
return true;
}
// -----------------------------------------------------------------------------------
}
}
#endif // WIN32
#endif // DLIB_THREADS_KERNEL_1_CPp_
|