]> code.citadel.org Git - citadel.git/blobdiff - citadel/sysdep_decls.h
Changed the way we name threads. Now we use a const char *.
[citadel.git] / citadel / sysdep_decls.h
index a16a2e60336e9fd0f5400248e3ec059c5fe69293..d2ae1b87af3861d5fa93a6fe433fd82a06170959 100644 (file)
@@ -130,7 +130,7 @@ extern struct CtdlThreadNode {
        long number;                            /* A unigue number for this thread (not implimented yet) */
        int wakefd_recv;                        /* An fd that this thread can sleep on (not implimented yet) */
        int wakefd_send;                        /* An fd that this thread can send out on (Not implimented yet) */
-       char *name;                             /* A name for this thread */
+       const char *name;                       /* A name for this thread */
        void *(*thread_func) (void *arg);       /* The actual function that does this threads work */
        void *user_args;                        /* Arguments passed to this threads work function */
        long flags;                             /* Flags that describe this thread */