Dr. Dobb's is part of the Informa Tech Division of Informa PLC

This site is operated by a business or businesses owned by Informa PLC and all copyright resides with them. Informa PLC's registered office is 5 Howick Place, London SW1P 1WG. Registered in England and Wales. Number 8860726.


Channels ▼
RSS

The QNX Operating System


September 1991/The QNX Operating System/Listing 3

Listing 3 (sender.c)

/*********************************************************
***
***
***    Program to illustrate message passing under QNX.
***    Written and tested under QNX version 2.15C atp
***    Compiler used: Quantum's C compiler
***
***    This program is used to send a message to the
***    holder.c program (<a href="/showArticle.jhtml?documentID=cuj9109busigin&pgno=3">listing 2</a>). It can request that
***    holder.c provide one of the following services:
***
***    1)  Store a text string that is sent to it by this
***        task.
***    2)  Reply to this task with a previously stored
***        string.
***    3)  Have holder.c commit suicide.
***
**********************************************************/

#include <stdio.h>
#include "message.h"

main(argc, argv)
int argc;
char **argv;
{
   unsigned rtid;              /* Variable to hold
                             receiving task id    */
   struct message buff;        /* Message buffers      */

/*
   If an incorrect number of arguments have been passed to
   this program print a command usage message and exit.
*/
   if (argc != 2)
   {
      printf("\nUsage: sender <arg>");
      printf("\n\nWhere: <arg> = t=\"text string\"");
      printf("\n               (stores string)");
      printf("\n       <arg> = -query");
      printf("\n               (get stored string)");
      printf("\n       <arg> = -kill");
      printf("\n               (cause holder to die)\n");
      exit(-1);
   }

/*
   Find the task id of holder.c which will receive the
   messages from this task.
*/
   if(!(rtid = name_locate(HOLDER_NAME, 0, sizeof(buff))))
   {
      printf("\nname_locate() failed\n");
      exit(-1);
   }
/*
   Build message to send to holder.
*/
   switch ( (*arg v[1] << 8) | *(argv[1] +1) )
   {
      case ('t' << 8) | '=' :
         strcpy(buff.text, (argv[1] + 2) );
         buff.mssg_type = STORE;
         break;
      case ('-' << 8) | 'q' :
         buff.mssg_type = RETRIEVE;
         break;
      case ('-' << 8) | 'k' :
         buff.mssg_type = KILL;
         break;
      default:
         printf("\nUnidentified argument used.\n");
         exit(-1);

   }

/*
   Send holder the message and print the reply if there
   there is one.
*/

   send(rtid, &buff, &buff, sizeof(buff) );

   switch (buff.mssg_type)
   {
      case STORED:
         printf("\nMessage stored\n");
         break;
      case RETRIEVED:
         printf("\nRetrieved message [%s]\n",buff.text);
         break;
      case KILL:
         printf("\nSuicide request sent to holder\n");
         break;
      default:
         printf("\nReceived unknown message [%d].\n",
                buff.mssg_type);
         break;

   }

}

/* End of File */


Related Reading


More Insights






Currently we allow the following HTML tags in comments:

Single tags

These tags can be used alone and don't need an ending tag.

<br> Defines a single line break

<hr> Defines a horizontal line

Matching tags

These require an ending tag - e.g. <i>italic text</i>

<a> Defines an anchor

<b> Defines bold text

<big> Defines big text

<blockquote> Defines a long quotation

<caption> Defines a table caption

<cite> Defines a citation

<code> Defines computer code text

<em> Defines emphasized text

<fieldset> Defines a border around elements in a form

<h1> This is heading 1

<h2> This is heading 2

<h3> This is heading 3

<h4> This is heading 4

<h5> This is heading 5

<h6> This is heading 6

<i> Defines italic text

<p> Defines a paragraph

<pre> Defines preformatted text

<q> Defines a short quotation

<samp> Defines sample computer code text

<small> Defines small text

<span> Defines a section in a document

<s> Defines strikethrough text

<strike> Defines strikethrough text

<strong> Defines strong text

<sub> Defines subscripted text

<sup> Defines superscripted text

<u> Defines underlined text

Dr. Dobb's encourages readers to engage in spirited, healthy debate, including taking us to task. However, Dr. Dobb's moderates all comments posted to our site, and reserves the right to modify or remove any content that it determines to be derogatory, offensive, inflammatory, vulgar, irrelevant/off-topic, racist or obvious marketing or spam. Dr. Dobb's further reserves the right to disable the profile of any commenter participating in said activities.

 
Disqus Tips To upload an avatar photo, first complete your Disqus profile. | View the list of supported HTML tags you can use to style comments. | Please read our commenting policy.