| OLD | NEW |
| 1 | 1 |
| 2 /* | 2 /* |
| 3 * Licensed Materials - Property of IBM | 3 * Licensed Materials - Property of IBM |
| 4 * | 4 * |
| 5 * trousers - An open source TCG Software Stack | 5 * trousers - An open source TCG Software Stack |
| 6 * | 6 * |
| 7 * (C) Copyright International Business Machines Corp. 2004 | 7 * (C) Copyright International Business Machines Corp. 2004 |
| 8 * | 8 * |
| 9 */ | 9 */ |
| 10 | 10 |
| (...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 152 TSS_RESULT tcsd_threads_init(); | 152 TSS_RESULT tcsd_threads_init(); |
| 153 TSS_RESULT tcsd_threads_final(); | 153 TSS_RESULT tcsd_threads_final(); |
| 154 TSS_RESULT tcsd_thread_create(int, char *); | 154 TSS_RESULT tcsd_thread_create(int, char *); |
| 155 void *tcsd_thread_run(void *); | 155 void *tcsd_thread_run(void *); |
| 156 void thread_signal_init(); | 156 void thread_signal_init(); |
| 157 | 157 |
| 158 /* signal handling */ | 158 /* signal handling */ |
| 159 struct sigaction tcsd_sa_int; | 159 struct sigaction tcsd_sa_int; |
| 160 struct sigaction tcsd_sa_chld; | 160 struct sigaction tcsd_sa_chld; |
| 161 | 161 |
| 162 #define TCSD_UNIX_SOCKET "/var/run/tcsd.socket" |
| 163 |
| 162 #endif | 164 #endif |
| OLD | NEW |