summaryrefslogtreecommitdiff
path: root/portato/ipc.pxd
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.net>2009-08-15 11:51:15 +0200
committerRené 'Necoro' Neumann <necoro@necoro.net>2009-08-15 11:51:15 +0200
commit088452702812614cbbbaa64b116f29971920fac2 (patch)
tree6ebcac8a97e12720e09630e4f41c3cc7ecacd6bb /portato/ipc.pxd
parent44d410d007e88d794e35e322082bec3ec69d5fa7 (diff)
downloadportato-088452702812614cbbbaa64b116f29971920fac2.tar.gz
portato-088452702812614cbbbaa64b116f29971920fac2.tar.bz2
portato-088452702812614cbbbaa64b116f29971920fac2.zip
Renamed 'mq' to 'ipc'
Diffstat (limited to 'portato/ipc.pxd')
-rw-r--r--portato/ipc.pxd52
1 files changed, 52 insertions, 0 deletions
diff --git a/portato/ipc.pxd b/portato/ipc.pxd
new file mode 100644
index 0000000..64ca05d
--- /dev/null
+++ b/portato/ipc.pxd
@@ -0,0 +1,52 @@
+# -*- coding: utf-8 -*-
+#
+# File: portato/ipc.pxd
+# This file is part of the Portato-Project, a graphical portage-frontend.
+#
+# Copyright (C) 2006-2009 René 'Necoro' Neumann
+# This is free software. You may redistribute copies of it under the terms of
+# the GNU General Public License version 2.
+# There is NO WARRANTY, to the extent permitted by law.
+#
+# Written by René 'Necoro' Neumann <necoro@necoro.net>
+
+from python_string cimport *
+from python_mem cimport *
+
+cdef extern from "errno.h":
+ int errno
+ cdef enum:
+ EACCES, EEXIST, ENOENT, ENOMEM, ENOSPC,
+ EINVAL, EPERM, EIDRM, EINTR
+
+cdef extern from *:
+ int INT_MAX
+ int RAND_MAX
+ ctypedef size_t int
+ int rand()
+
+cdef extern from "string.h":
+ char* strerror(int errno)
+ void* memcpy (void* dst, void* src, size_t len)
+
+cdef extern from "sys/msg.h" nogil:
+ cdef enum:
+ IPC_CREAT, IPC_EXCL, IPC_NOWAIT,
+ IPC_RMID
+
+ ctypedef int key_t
+
+ struct msqid_ds:
+ pass
+
+ int msgget(key_t key, int msgflg)
+ int msgctl(int msqid, int cmd, msqid_ds* buf)
+ int msgsnd(int msgid, void* msgp, size_t msgsz, int msgflg)
+ int msgrcv(int msgid, void* msgp, size_t msgsz, long msgtype, int msgflg)
+
+cdef struct msg_data:
+ long mtype
+ char mtext[1]
+
+cdef enum:
+ MAX_MESSAGE_SIZE = 2048