2 * Copyright (c) 2000-2001 Silicon Graphics, Inc.
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
7 * published by the Free Software Foundation.
9 * This program is distributed in the hope that it would be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write the Free Software Foundation,
16 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
23 /*---------------------------------------------------------------------------
25 Test program used to test the DMAPI function dm_respond_event(). The
28 respond_event sid token response reterror
30 where sid is the session ID whose event you are responding to.
32 ----------------------------------------------------------------------------*/
35 extern char *sys_errlist[];
46 fprintf(stderr, "usage:\t%s sid token response reterror\n",
48 fprintf(stderr, " Response values:\n");
49 fprintf(stderr, " %d = DM_RESP_INVALID\n", DM_RESP_INVALID);
50 fprintf(stderr, " %d = DM_RESP_CONTINUE\n", DM_RESP_CONTINUE );
51 fprintf(stderr, " %d = DM_RESP_ABORT\n", DM_RESP_ABORT);
52 fprintf(stderr, " %d = DM_RESP_DONTCARE\n", DM_RESP_DONTCARE);
65 dm_response_t response;
68 Progname = strrchr(argv[0], '/');
79 token = atol(argv[2]);
80 response = (dm_response_t)atoi(argv[3]);
81 reterror = atol(argv[4]);
83 if (dm_init_service(&name) == -1) {
84 fprintf(stderr, "Can't initialize the DMAPI\n");
88 if (dm_respond_event(sid, token, response, reterror, 0, NULL)) {
89 fprintf(stderr, "dm_respond_event failed, %d/%s\n",
90 errno, strerror(errno));