Subversion Repositories HelenOS

Rev

Rev 2813 | Rev 2818 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2813 Rev 2817
1
/** @addtogroup generic
1
/** @addtogroup generic
2
 * @{
2
 * @{
3
 */
3
 */
4
/** @file
4
/** @file
5
 */
5
 */
6
 
6
 
7
#ifndef KERN_UDEBUG_H_
7
#ifndef KERN_UDEBUG_H_
8
#define KERN_UDEBUG_H_
8
#define KERN_UDEBUG_H_
9
 
9
 
10
typedef enum { /* udebug_method_t */
10
typedef enum { /* udebug_method_t */
11
 
11
 
12
/** Start debugging the recipient.
12
/** Start debugging the recipient.
13
 * Causes all threads in the receiving task to stop. When they
13
 * Causes all threads in the receiving task to stop. When they
14
 * are all stoped, an answer with retval 0 is generated.
14
 * are all stoped, an answer with retval 0 is generated.
15
 */
15
 */
16
UDEBUG_M_BEGIN = 1,
16
UDEBUG_M_BEGIN = 1,
17
 
17
 
18
/** Finish debugging the recipient.
18
/** Finish debugging the recipient.
19
 * Answers all pending GO and GUARD messages.
19
 * Answers all pending GO and GUARD messages.
20
 */
20
 */
21
UDEBUG_M_END,
21
UDEBUG_M_END,
22
 
22
 
23
/** Make sure the debugged task is still there.
23
/** Make sure the debugged task is still there.
24
 * This message is answered when the debugged task dies
24
 * This message is answered when the debugged task dies
25
 * or the debugging session ends.
25
 * or the debugging session ends.
26
 */
26
 */
27
UDEBUG_M_GUARD,
27
UDEBUG_M_GUARD,
28
 
28
 
29
/** Run a thread until a debugging event occurs.
29
/** Run a thread until a debugging event occurs.
30
 * This message is answered when the thread stops
30
 * This message is answered when the thread stops
31
 * in a debugging event.
31
 * in a debugging event.
32
 *
32
 *
33
 * - ARG2 - id of the thread to run
33
 * - ARG2 - id of the thread to run
34
 */
34
 */
35
UDEBUG_M_GO,
35
UDEBUG_M_GO,
36
 
36
 
37
/** Stop a thread being debugged.
37
/** Stop a thread being debugged.
38
 * Creates a special STOP event in the thread, causing
38
 * Creates a special STOP event in the thread, causing
39
 * it to answer a pending GO message (if any).
39
 * it to answer a pending GO message (if any).
40
 */
40
 */
41
UDEBUG_M_STOP,
41
UDEBUG_M_STOP,
42
 
42
 
43
/** Read arguments of a syscall.
43
/** Read arguments of a syscall.
44
 *
44
 *
45
 * - ARG2 - thread identification
45
 * - ARG2 - thread identification
46
 * - ARG3 - destination address in the caller's address space
46
 * - ARG3 - destination address in the caller's address space
47
 * - ARG4 - size of receiving buffer in bytes
47
 * - ARG4 - size of receiving buffer in bytes
48
 *
48
 *
49
 * on answer, the kernel will set:
49
 * on answer, the kernel will set:
50
 *
50
 *
51
 * - ARG1 - actual size in bytes of data read
51
 * - ARG1 - actual size in bytes of data read
52
 */
52
 */
53
UDEBUG_M_ARGS_READ,
53
UDEBUG_M_ARGS_READ,
54
 
54
 
-
 
55
/** Read thread's userspace register state (istate_t).
-
 
56
 *
-
 
57
 * - ARG2 - thread identification
-
 
58
 * - ARG3 - destination address in the caller's address space
-
 
59
 * - ARG4 - size of receiving buffer in bytes
-
 
60
 *
-
 
61
 * on answer, the kernel will set:
-
 
62
 *
-
 
63
 * - ARG1 - actual size in bytes of data read
-
 
64
 * - ARG2 - total size in bytes of data available
-
 
65
 *
-
 
66
 * or, on error, retval will be
-
 
67
 * - ENOENT - thread does not exist
-
 
68
 * - EBUSY - register state not available
-
 
69
 */
-
 
70
UDEBUG_M_REGS_READ,
-
 
71
 
-
 
72
/** Write thread's userspace register state (istate_t).
-
 
73
 *
-
 
74
 * - ARG2 - thread identification
-
 
75
 * - ARG3 - source address in the caller's address space
-
 
76
 * - ARG4 - size of source data in bytes
-
 
77
 *
-
 
78
 * on answer, the kernel will set:
-
 
79
 *
-
 
80
 * - ARG1 - actual size in bytes of data copied
-
 
81
 * - ARG2 - max size in bytes that could have been copied
-
 
82
 *
-
 
83
 * or, on error, retval will be
-
 
84
 * - ENOENT - thread does not exist
-
 
85
 * - EBUSY - register state not available
-
 
86
 */
-
 
87
UDEBUG_M_REGS_WRITE,
-
 
88
 
55
/** Read the list of the debugged tasks's threads.
89
/** Read the list of the debugged tasks's threads.
56
 *
90
 *
57
 * - ARG2 - destination address in the caller's address space
91
 * - ARG2 - destination address in the caller's address space
58
 * - ARG3 - size of receiving buffer in bytes
92
 * - ARG3 - size of receiving buffer in bytes
59
 *
93
 *
60
 * The kernel fills the buffer with a series of sysarg_t values
94
 * The kernel fills the buffer with a series of sysarg_t values
61
 * (thread ids). On answer, the kernel will set:
95
 * (thread ids). On answer, the kernel will set:
62
 *
96
 *
63
 * - ARG1 - number of bytes that were actually copied
97
 * - ARG1 - number of bytes that were actually copied
64
 * - ARG2 - number of bytes of the complete data
98
 * - ARG2 - number of bytes of the complete data
65
 *
99
 *
66
 */
100
 */
67
UDEBUG_M_THREAD_READ,
101
UDEBUG_M_THREAD_READ,
68
 
102
 
69
/** Read the list of the debugged tasks's memory.
103
/** Read the list of the debugged tasks's memory.
70
 *
104
 *
71
 * - ARG2 - destination address in the caller's address space
105
 * - ARG2 - destination address in the caller's address space
72
 * - ARG3 - source address in the recipient's address space
106
 * - ARG3 - source address in the recipient's address space
73
 * - ARG4 - size of receiving buffer in bytes
107
 * - ARG4 - size of receiving buffer in bytes
74
 *
108
 *
75
 */
109
 */
76
UDEBUG_M_MEM_READ
110
UDEBUG_M_MEM_READ
77
 
111
 
78
} udebug_method_t;
112
} udebug_method_t;
79
 
113
 
80
 
114
 
81
typedef enum {
115
typedef enum {
82
    UDEBUG_EVENT_SYSCALL
116
    UDEBUG_EVENT_SYSCALL
83
} udebug_event_t;
117
} udebug_event_t;
84
 
118
 
85
#ifdef KERNEL
119
#ifdef KERNEL
86
 
120
 
87
void udebug_syscall_event(unative_t a1, unative_t a2, unative_t a3,
121
void udebug_syscall_event(unative_t a1, unative_t a2, unative_t a3,
88
    unative_t a4, unative_t a5, unative_t a6, unative_t id, unative_t rc);
122
    unative_t a4, unative_t a5, unative_t a6, unative_t id, unative_t rc);
89
void udebug_stoppable_begin(void);
123
void udebug_stoppable_begin(void);
90
void udebug_stoppable_end(void);
124
void udebug_stoppable_end(void);
91
 
125
 
92
#endif
126
#endif
93
 
127
 
94
#endif
128
#endif
95
 
129
 
96
/** @}
130
/** @}
97
 */
131
 */
98
 
132