mirror of
https://github.com/zeromq/libzmq.git
synced 2025-03-10 07:56:09 +00:00
Whitespace fix
This commit is contained in:
parent
40d7ca6a60
commit
45b593e7ed
@ -40,7 +40,7 @@ extern "C"
|
|||||||
void zmq::thread_t::start (thread_fn *tfn_, void *arg_)
|
void zmq::thread_t::start (thread_fn *tfn_, void *arg_)
|
||||||
{
|
{
|
||||||
tfn = tfn_;
|
tfn = tfn_;
|
||||||
arg =arg_;
|
arg = arg_;
|
||||||
#if defined _WIN32_WCE
|
#if defined _WIN32_WCE
|
||||||
descriptor = (HANDLE) CreateThread (NULL, 0,
|
descriptor = (HANDLE) CreateThread (NULL, 0,
|
||||||
&::thread_routine, this, 0 , NULL);
|
&::thread_routine, this, 0 , NULL);
|
||||||
@ -86,7 +86,7 @@ extern "C"
|
|||||||
void zmq::thread_t::start (thread_fn *tfn_, void *arg_)
|
void zmq::thread_t::start (thread_fn *tfn_, void *arg_)
|
||||||
{
|
{
|
||||||
tfn = tfn_;
|
tfn = tfn_;
|
||||||
arg =arg_;
|
arg = arg_;
|
||||||
int rc = pthread_create (&descriptor, NULL, thread_routine, this);
|
int rc = pthread_create (&descriptor, NULL, thread_routine, this);
|
||||||
posix_assert (rc);
|
posix_assert (rc);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user