int msgctl(int id, int cmd, msqid_ds* buf) { #if !defined(__LP64__) // Annoyingly, the kernel requires this for 32-bit but rejects it for 64-bit.
cmd |= IPC_64; #endif return syscall(SYS_msgctl, id, cmd, buf);
}
int msgget(key_t key, int flags) { return syscall(SYS_msgget, key, flags);
}
ssize_t msgrcv(int id, void* msg, size_t n, long type, int flags) { return syscall(SYS_msgrcv, id, msg, n, type, flags);
}
int msgsnd(int id, constvoid* msg, size_t n, int flags) { return syscall(SYS_msgsnd, id, msg, n, flags);
}
Messung V0.5 in Prozent
¤ Dauer der Verarbeitung: 0.1 Sekunden
(vorverarbeitet am 2026-06-28)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.