#include <map>#include <vector>#include <string.h>#include <malloc.h>#include <stdio.h>#include <unistd.h>#include <stdlib.h>#include <pthread.h>#include "tools/assert.h"#include "tools/log.h"#include "thread_obj.h"

Go to the source code of this file.
Functions | |
| ThreadObj * | GetCurrentThread () |
| Get a pointer to the calling ThreadObj. | |
Variables | |
| pthread_mutex_t | mgmt_lock = PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP |
| std::map< pthread_t, ThreadObj * > | thread_map |
| ThreadObj* GetCurrentThread | ( | ) |
Get a pointer to the calling ThreadObj.
Definition at line 93 of file thread_obj.cpp.
| pthread_mutex_t mgmt_lock = PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP |
Definition at line 14 of file thread_obj.cpp.
| std::map<pthread_t, ThreadObj*> thread_map |
Definition at line 16 of file thread_obj.cpp.
1.5.8