Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/as400jplpc/nim_mqueue

Message queues allow the operation of standardized asynchronous links between two servers
https://github.com/as400jplpc/nim_mqueue

comunication kernel nim queue

Last synced: 16 days ago
JSON representation

Message queues allow the operation of standardized asynchronous links between two servers

Awesome Lists containing this project

README

        

** ÉTUDE MQUEUE**

Jean-Pierre Laroche

[man page mqueue](https://man7.org/linux/man-pages/man0/mqueue.h.0p.html)
https://github.com/SgtWiggles/ume thank you that inspired me to set up a dedicated terminal



tank you github for exemple open-source for etude

**programme qmsend:**

→ mq_open(QUEUE_NAME,O_RDWR or O_CREAT,0o640,mqd_a.addr)

→ mq_send(mqd_t, bytes_send,runeLen($bytes_send),20)

**programme qmreceive:**

→ mq_open(QUEUE_NAME , O_RDONLY, 0666, mqd_a.addr)

→ mq_receive(mqd_t, tab.addr, rlen,mq_priority)