Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/as400jplpc/nim_mqueue
- Owner: AS400JPLPC
- Created: 2020-10-31T12:23:22.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-10-21T17:31:43.000Z (over 3 years ago)
- Last Synced: 2024-11-28T10:30:32.334Z (3 months ago)
- Topics: comunication, kernel, nim, queue
- Language: Nim
- Homepage:
- Size: 16.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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)