OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:LOGGER_ASSERT
(Results
1 - 2
of
2
) sorted by null
/external/stressapptest/src/
logger.cc
49
LOGGER_ASSERT
(!thread_running_);
51
LOGGER_ASSERT
(0 == pthread_create(&thread_, NULL, &StartRoutine, this));
55
LOGGER_ASSERT
(thread_running_);
57
LOGGER_ASSERT
(0 == pthread_mutex_lock(&queued_lines_mutex_));
60
LOGGER_ASSERT
(0 == pthread_mutex_unlock(&queued_lines_mutex_));
62
LOGGER_ASSERT
(0 == pthread_cond_signal(&queued_lines_cond_));
64
LOGGER_ASSERT
(0 == pthread_join(thread_, NULL));
68
LOGGER_ASSERT
(0 == pthread_mutex_init(&queued_lines_mutex_, NULL));
69
LOGGER_ASSERT
(0 == pthread_cond_init(&queued_lines_cond_, NULL));
70
LOGGER_ASSERT
(0 == pthread_cond_init(&full_queue_cond_, NULL))
[
all
...]
logger.h
43
#define
LOGGER_ASSERT
(x) \
76
LOGGER_ASSERT
(log_fd >= 0);
Completed in 2994 milliseconds