xfstests: remove unsupported conditionals
[xfstests-dev.git] / dmapi / src / simple / dm_create_session.c
1 /*
2  * Copyright (c) 2000-2001 Silicon Graphics, Inc.
3  * All Rights Reserved.
4  *
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.
8  *
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.
13  *
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
17  */
18 #include <stdio.h>
19 #include <stdlib.h>
20 #include <sys/errno.h>
21 #include <getopt.h>
22 #ifdef linux
23 #include <dmapi.h>
24 #endif
25
26 int
27 main( int argc, char **argv )
28 {
29         extern char *optarg;
30         int c;
31         int ret;
32         dm_sessid_t oldsid = DM_NO_SESSION;
33         dm_sessid_t newsid = 0;
34         char *sessinfo = "test1";
35         char *versionstr;
36
37         while( (c = getopt(argc, argv, "hs:i:")) != -1 ) {
38                 switch(c){
39                 case 's':
40                         oldsid = atoi( optarg );
41                         break;
42                 case 'i':
43                         sessinfo = optarg;
44                         break;
45                 case 'h':
46                         fprintf(stderr, "Usage: %s [-s oldsid] [-i sessinfo_txt]\n", argv[0]);
47                         exit(2);
48                 }
49         }
50
51         if( dm_init_service( &versionstr ) < 0 )
52                 exit(1);
53
54         ret = dm_create_session( oldsid, sessinfo, &newsid);
55         printf( "ret=%d\n", ret );
56         printf( "newsid=%d\n", newsid );
57         exit(0);
58 }
59