]> mj.ucw.cz Git - libucw.git/blobdiff - ucw/threads.h
Logging: Introduce LS_NUM_TYPES and use it.
[libucw.git] / ucw / threads.h
index c70354fb71dafb8ce8e6418de946dd45d8b1624d..ef00dea1af953837793e49149379ab385e8ae262 100644 (file)
@@ -16,7 +16,7 @@ struct ucwlib_context {
   int thread_id;                       // Thread ID (either kernel tid or a counter)
   int temp_counter;                    // Counter for fb-temp.c
   struct asio_queue *io_queue;         // Async I/O queue for fb-direct.c
-  sh_sighandler_t *signal_handlers;    // Signal handlers for sighandler.c
+  ucw_sighandler_t *signal_handlers;   // Signal handlers for sighandler.c
 };
 
 struct ucwlib_context *ucwlib_thread_context(void);
@@ -28,7 +28,7 @@ void ucwlib_unlock(void);
 
 #ifdef CONFIG_UCW_THREADS
 
-extern uns default_thread_stack_size;
+extern uns ucwlib_thread_stack_size;
 
 #endif