Overview
Comment: | Updated to use a thread-local variable for dummy log entries to avoid potential issues |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
b8d631487085c81da51c438405cf74aa |
User & Date: | rkeene on 2014-02-11 04:39:51 |
Other Links: | manifest | tags |
Context
2014-02-11
| ||
04:40 | Re-enabled logging in default build, accidentally disabled check-in: 2334e712aa user: rkeene tags: trunk | |
04:39 | Updated to use a thread-local variable for dummy log entries to avoid potential issues check-in: b8d6314870 user: rkeene tags: trunk | |
04:32 | Whitespace fix check-in: bbd721a8cc user: rkeene tags: trunk | |
Changes
Modified Makefile from [a294b2122c] to [a724394795].
1 | 1 2 3 4 5 6 7 8 9 | - + | CC = gcc |
︙ |
Modified filed.c from [776212fe50] to [8b7ede8efd].
︙ | |||
226 227 228 229 230 231 232 | 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 | - - + | } return(fd); } /* Log a message */ #ifdef FILED_DONT_LOG |
︙ | |||
868 869 870 871 872 873 874 | 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 | - + - | return; } /* Handle incoming connections */ static void *filed_worker_thread(void *arg_v) { struct filed_worker_thread_args *arg; struct filed_http_request request; |
︙ | |||
929 930 931 932 933 934 935 | 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 | - - + + - - + | } /* Report error */ filed_log_msg("THREAD_DIED ABNORMAL"); return(NULL); |
︙ |