]> git.ipfire.org Git - thirdparty/cups.git/commitdiff
Fix Windows builds.
authorMichael Sweet <michael.r.sweet@gmail.com>
Thu, 14 Sep 2017 18:20:07 +0000 (14:20 -0400)
committerMichael Sweet <michael.r.sweet@gmail.com>
Thu, 14 Sep 2017 18:20:07 +0000 (14:20 -0400)
cups/thread.c

index 7af45ea70c9fb4d680d14072be5c3d027a3452c4..65257aa116c0ca536bff5b055e3d49d4e80cac0a 100644 (file)
@@ -354,6 +354,18 @@ _cupsThreadCreate(
 }
 
 
+/*
+ * '_cupsThreadDetach()' - Tell the OS that the thread is running independently.
+ */
+
+void
+_cupsThreadDetach(_cups_thread_t thread)/* I - Thread ID */
+{
+  // TODO: Implement me
+  (void)thread;
+}
+
+
 /*
  * '_cupsThreadWait()' - Wait for a thread to exit.
  */