vmod/vmodttl: fixed bug related to luns not ordered and/or not starting from zero.
[ht-drivers.git] / utils / extest / cmd_handlers.h
blobdd92726e7a5dedbcef7ce4f2785f332ec48fb2ed
1 /**
2 * @file cmd_handlers.h
4 * @brief extest's handlers' function declarations
6 * @author Copyright (C) 2009 CERN CO/HT
8 * @section license_sec License
9 * Released under the GPL v2. (and only v2, not any later version)
11 #ifndef _EXTEST_HANDLERS_H_
12 #define _EXTEST_HANDLERS_H_
14 #include <extest.h>
16 /*! @name Test Default command vectors.
18 //@{
19 int hndl_illegal (struct cmd_desc*, struct atom*);
20 int _hndl_dbg (struct cmd_desc*, struct atom*);
21 int hndl_quit (struct cmd_desc*, struct atom*);
22 int hndl_help (struct cmd_desc*, struct atom*);
23 int hndl_history (struct cmd_desc*, struct atom*);
24 int hndl_atoms (struct cmd_desc*, struct atom*);
25 int hndl_sleep (struct cmd_desc*, struct atom*);
26 int hndl_shell (struct cmd_desc*, struct atom*);
28 int hndl_module (struct cmd_desc*, struct atom*);
29 int hndl_nextmodule (struct cmd_desc*, struct atom*);
30 int hndl_getversion (struct cmd_desc*, struct atom*);
31 int hndl_swdeb (struct cmd_desc*, struct atom*);
32 int hndl_rawio (struct cmd_desc*, struct atom*);
33 int hndl_maps (struct cmd_desc*, struct atom*);
34 int hndl_timeout (struct cmd_desc*, struct atom*);
35 int hndl_queue (struct cmd_desc*, struct atom*);
36 int hndl_clients (struct cmd_desc*, struct atom*);
37 int hndl_connect (struct cmd_desc*, struct atom*);
38 int hndl_enable (struct cmd_desc*, struct atom*);
39 int hndl_reset (struct cmd_desc*, struct atom*);
40 int hndl_getstatus (struct cmd_desc*, struct atom*);
41 int hndl_waitintr (struct cmd_desc*, struct atom*);
42 int hndl_simintr (struct cmd_desc*, struct atom*);
43 #if 0
44 int hndl_jtag_vhdl (struct cmd_desc*, struct atom*);
45 #endif
46 //@}
48 #endif /* _EXTEST_HANDLERS_H_ */