home *** CD-ROM | disk | FTP | other *** search
- /*
- * c-tree Stop Server
- *
- * This program is the CONFIDENTIAL and PROPRIETARY property
- * of FairCom(R) Corporation. Any unauthorized use, reproduction or
- * transfer of this program is strictly prohibited.
- *
- * Copyright (c) 1987, 1988, 1989 FairCom Corporation
- * (Subject to limited distribution and
- * restricted disclosure only.)
- * *** ALL RIGHTS RESERVED ***
- *
- * 4006 West Broadway
- * Columbia, MO 65203
- *
- *
- * c-tree(R) Version 4.3
- * Release C
- * February 7, 1989 17:30
- *
- */
-
- #include "ctstdr.h"
- #include "ctoptn.h"
- #include "cterrc.h"
- #include "ctcomm.h"
-
- #define MAXASIZ 512
-
- LOCAL MESSAGE msg;
- LOCAL UCOUNT cts_mxaln;
- LOCAL TEXT *apxmsg,*apxdat;
- COUNT cts_usrid,uerr_cod,*altseq;
- UCOUNT cts_apxsiz;
- TEXT ct_buf[CTBUFSIZ];
-
- COUNT ctrqst(),ctrspn();
-
- main()
- {
- TEXT *getmids();
-
- msg.mfunc = TST_STPSRV;
- msg.musrn = -1;
-
- if ((apxmsg = getmids(cts_apxsiz = MAXASIZ,&msg)) == NULL)
- goto err_term;
-
- apxdat = apxmsg + sizeof(MESSAGE);
-
- if (ctrqst(apxmsg,&msg))
- goto err_term;
-
- if (ctrspn(&apxmsg,&msg))
- goto err_term;
-
- switch (msg.merrn) {
- case NO_ERROR:
- printf("\n\nc-tree Server Terminated\n\n");
- ridmids();
- exit(0);
- case STRN_ERR:
- printf(
- "\n\nThe c-tree(R) Server has transactions pending. %ld stop(s) attempted.\n",
- msg.mpntr);
- printf(
- "%d attempts are required to force a shut down.\n",msg.mseqn);
- exit(0);
- }
-
- err_term:
- printf("\nCould not shut down c-tree Server. Error(%d,%d).\n",
- uerr_cod,msg.merrn);
- exit(2);
- }
-
- COUNT STPUSR()
- {
- msg.mfunc = TST_STPUSR;
- msg.mdlen = msg.mretc = 0;
- ctrqst(apxmsg,&msg);
- ctrspn(&apxmsg,&msg);
- ridmids();
- }
-
- /* end of ctstop.c */
-