summaryrefslogtreecommitdiff
path: root/src/c/queue.h
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adamc@hcoop.net>2009-06-27 12:38:23 -0400
committerGravatar Adam Chlipala <adamc@hcoop.net>2009-06-27 12:38:23 -0400
commit74103b6a0ede67d270bb6850ae12578df62032fd (patch)
treeb3a424dbabd630f63bba97a1f80919800ee093fc /src/c/queue.h
parent756283988dd7d7235c228b3b99e6c7f6c73bf122 (diff)
Successfully starting FastCGI sessions with Apache
Diffstat (limited to 'src/c/queue.h')
-rw-r--r--src/c/queue.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/c/queue.h b/src/c/queue.h
new file mode 100644
index 00000000..8297dd00
--- /dev/null
+++ b/src/c/queue.h
@@ -0,0 +1,7 @@
+#ifndef QUEUE_H
+#define QUEUE_H
+
+int uw_dequeue();
+void uw_enqueue(int);
+
+#endif