About 102,000 results
Open links in new tab
  1. Are message queues obsolete in linux? - Stack Overflow

    Yes, I think that message queues are appropriate for some applications. POSIX message queues provide a nicer interface, in particular, you get to give your queues names rather than IDs, …

  2. How do I use mqueue in a c program on a Linux based system?

    Apr 26, 2012 · How do I use mqueue (message queue) in a c program on a Linux based system? I'm looking for some good code examples that can show how this is done in a correct and …

  3. linux command to check POSIX message queue

    Mar 31, 2013 · We can check the details of system V message queue with the help of ipcscommand. Is there any command to check POSIX message queue in Linux?

  4. How is a message queue implemented in the Linux kernel?

    The Linux kernel (2.6) implements two message queues: (rather 'message lists', as the implementation is done by using a linked list not strictly following the FIFO principle) System V …

  5. c - What is the difference between Message Queues and files in …

    Feb 28, 2022 · 0 In Linux, Message queues are a form of IPC. However, I don't understand how they are different from a file. Instead of writing into a message queues, the processes can just …

  6. linux - message queue in C: implementing 2 way comm - Stack …

    4 I am a student and a begineer in C. I want to implement 2 way communication using message queue in C linux. Do I need two queues or only one to get this done? Also I would like to know …

  7. Where are POSIX message queues located (Linux)?

    Since the internal handling of message queues are implementation specific (not part of the standard, as it only specifies the programming interface and behaviour), I recommend you to …

  8. c - Is it possible to open message queue in linux with huge …

    Sep 24, 2015 · Is it possible to open message queue in linux with huge number of elements? Asked 10 years, 2 months ago Modified 10 years, 2 months ago Viewed 12k times

  9. linux - POSIX queues and msg_max - Stack Overflow

    May 21, 2012 · I am toying a bit with POSIX queues and I encountered a problem. When creating a new queue I can specify for example the size of the message and how many messages …

  10. Which is better for local IPC, POSIX message queues (mqueues) or …

    Dec 21, 2010 · SysV message queues compared to UNIX domain datagram sockets have the major differences I'm aware of: You can poll() socket, but you can't message queue. Message …