home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c004 / 1.ddi / CTSTOP.C < prev    next >
Encoding:
C/C++ Source or Header  |  1989-04-18  |  1.7 KB  |  87 lines

  1. /*
  2.  *    c-tree Stop Server
  3.  *
  4.  *    This program is the CONFIDENTIAL and PROPRIETARY property 
  5.  *    of FairCom(R) Corporation. Any unauthorized use, reproduction or
  6.  *    transfer of this program is strictly prohibited.
  7.  *
  8.  *      Copyright (c) 1987, 1988, 1989 FairCom Corporation
  9.  *    (Subject to limited distribution and
  10.  *     restricted disclosure only.)
  11.  *    *** ALL RIGHTS RESERVED ***
  12.  *
  13.  *    4006 West Broadway
  14.  *    Columbia, MO 65203
  15.  *
  16.  *
  17.  *    c-tree(R)    Version 4.3
  18.  *            Release C
  19.  *            February 7, 1989 17:30
  20.  *
  21.  */
  22.  
  23. #include "ctstdr.h"
  24. #include "ctoptn.h"
  25. #include "cterrc.h"
  26. #include "ctcomm.h"
  27.  
  28. #define MAXASIZ    512
  29.  
  30. LOCAL MESSAGE    msg;
  31. LOCAL UCOUNT    cts_mxaln;
  32. LOCAL TEXT     *apxmsg,*apxdat;
  33. COUNT        cts_usrid,uerr_cod,*altseq;
  34. UCOUNT        cts_apxsiz;
  35. TEXT        ct_buf[CTBUFSIZ];
  36.  
  37. COUNT        ctrqst(),ctrspn();
  38.  
  39. main()
  40. {
  41.     TEXT *getmids();
  42.  
  43.     msg.mfunc = TST_STPSRV;
  44.     msg.musrn = -1;
  45.  
  46.     if ((apxmsg = getmids(cts_apxsiz = MAXASIZ,&msg)) == NULL)
  47.         goto err_term;
  48.  
  49.     apxdat = apxmsg + sizeof(MESSAGE);
  50.  
  51.     if (ctrqst(apxmsg,&msg))
  52.         goto err_term;
  53.  
  54.     if (ctrspn(&apxmsg,&msg))
  55.         goto err_term;
  56.  
  57.     switch (msg.merrn) {
  58. case NO_ERROR:
  59.         printf("\n\nc-tree Server Terminated\n\n");
  60.         ridmids();
  61.         exit(0);
  62. case STRN_ERR:
  63.         printf(
  64. "\n\nThe c-tree(R) Server has transactions pending. %ld stop(s) attempted.\n",
  65.             msg.mpntr);
  66.         printf(
  67. "%d attempts are required to force a shut down.\n",msg.mseqn);
  68.         exit(0);
  69.     }
  70.  
  71. err_term:
  72.     printf("\nCould not shut down c-tree Server. Error(%d,%d).\n",
  73.         uerr_cod,msg.merrn);
  74.     exit(2);
  75. }
  76.  
  77. COUNT STPUSR()
  78. {
  79.     msg.mfunc = TST_STPUSR;
  80.     msg.mdlen = msg.mretc = 0;
  81.     ctrqst(apxmsg,&msg);
  82.     ctrspn(&apxmsg,&msg);
  83.     ridmids();
  84. }
  85.  
  86. /* end of ctstop.c */
  87.