bool APISocket::CClientSocket::StartSend()
{
	bool res = StartRoutine();
	int ret = Send();
	
	return res && (ret == 0);
}
Beispiel #2
0
void PThread::Start(void *entry, void *arg)
{
    pthread_create(&thread, NULL, StartRoutine(entry), arg);
}