POSIX Message Queues API

POSIX message queue interfaces for exchanging messages between processes with priority support.

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/posix-message-queues-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

API entry from apis.yml

apis.yml Raw ↑
name: POSIX Message Queues API
description: POSIX message queue interfaces for exchanging messages between processes with priority support.
image: https://kinlane-images.s3.amazonaws.com/shared/apis-json/apis-json-logo.jpg
humanURL: https://man7.org/linux/man-pages/man7/mq_overview.7.html
baseURL: system://unix/mqueue
tags:
- Asynchronous
- IPC
- Message Queues
- Messaging
tags_raw:
- Asynchronous
- Ipc
- Message-Queues
- Messaging
properties:
- type: Documentation
  url: https://man7.org/linux/man-pages/man7/mq_overview.7.html
- type: Documentation
  url: https://pubs.opengroup.org/onlinepubs/9699919799/functions/mq_open.html
operations:
- name: mq_open
  description: Open or create a POSIX message queue
  parameters:
  - name
  - oflag
  - mode
  - attr
  returns: message queue descriptor, (mqd_t)-1 on error
- name: mq_close
  description: Close a message queue descriptor
  parameters:
  - mqdes
  returns: 0 on success, -1 on error
- name: mq_unlink
  description: Remove a message queue
  parameters:
  - name
  returns: 0 on success, -1 on error
- name: mq_send
  description: Send a message to a message queue
  parameters:
  - mqdes
  - msg_ptr
  - msg_len
  - msg_prio
  returns: 0 on success, -1 on error
- name: mq_receive
  description: Receive a message from a message queue
  parameters:
  - mqdes
  - msg_ptr
  - msg_len
  - msg_prio
  returns: number of bytes received, -1 on error
- name: mq_timedsend
  description: Send a message to a message queue with a timeout
  parameters:
  - mqdes
  - msg_ptr
  - msg_len
  - msg_prio
  - abs_timeout
  returns: 0 on success, -1 on error
- name: mq_timedreceive
  description: Receive a message from a message queue with a timeout
  parameters:
  - mqdes
  - msg_ptr
  - msg_len
  - msg_prio
  - abs_timeout
  returns: number of bytes received, -1 on error
- name: mq_notify
  description: Register for notification when a message is available
  parameters:
  - mqdes
  - sevp
  returns: 0 on success, -1 on error
- name: mq_getattr
  description: Get message queue attributes
  parameters:
  - mqdes
  - attr
  returns: 0 on success, -1 on error
- name: mq_setattr
  description: Set message queue attributes
  parameters:
  - mqdes
  - newattr
  - oldattr
  returns: 0 on success, -1 on error