Overview
| Comment: | Corrected spelling error in comments |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
7f5706f7194b72a44162462e4c1194dc |
| User & Date: | rkeene on 2014-02-11 08:36:06 |
| Other Links: | manifest | tags |
Context
|
2014-02-11
| ||
| 16:45 | Updated to create function for opening log file check-in: 5abd6e92c9 user: rkeene tags: trunk | |
| 08:36 | Corrected spelling error in comments check-in: 7f5706f719 user: rkeene tags: trunk | |
| 08:12 | Updated to provide method earlier to log check-in: 5f36930fec user: rkeene tags: trunk | |
Changes
Modified filed.c from [882adf7425] to [81f8f85f74].
| ︙ | ︙ | |||
996 997 998 999 1000 1001 1002 |
}
/* Report error */
filed_log_msg("THREAD_DIED ABNORMAL");
return(NULL);
| | | 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 |
}
/* Report error */
filed_log_msg("THREAD_DIED ABNORMAL");
return(NULL);
/* local_dummy_log is only used if FILED_DONT_LOG is enabled, otherwise it's not used, but the compiler hates that idea. */
local_dummy_log.type = 0;
local_dummy_log.type = local_dummy_log.type;
}
/* Create worker threads */
static int filed_worker_threads_init(int fd, int thread_count) {
struct filed_worker_thread_args *arg;
|
| ︙ | ︙ |