Select one of the symbols to view example projects that use it.
 
Outline
#define OPENOCD_TARGET_SMP_H
#include <helper/list.h>
#include "server/server.h"
smp_command_handlers;
gdb_read_smp_packet(struct connection *, const char *, int);
gdb_write_smp_packet(struct connection *, const char *, int);
Files
loading...
SourceVuDevelopment ToolsOpenOCDsrc/target/smp.h
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* SPDX-License-Identifier: GPL-2.0-or-later */ /*************************************************************************** * * * Copyright (C) ST-Ericsson SA 2011 * * Author: Michel Jaouen <michel.jaouen@stericsson.com> for ST-Ericsson. * ***************************************************************************//* ... */ #ifndef OPENOCD_TARGET_SMP_H #define OPENOCD_TARGET_SMP_H #include <helper/list.h> #include "server/server.h" #define foreach_smp_target(pos, head) \ list_for_each_entry(pos, head, lh)... #define foreach_smp_target_direction(forward, pos, head) \ list_for_each_entry_direction(forward, pos, head, lh)... extern const struct command_registration smp_command_handlers[]; /* DEPRECATED */ int gdb_read_smp_packet(struct connection *connection, char const *packet, int packet_size); /* DEPRECATED */ int gdb_write_smp_packet(struct connection *connection, char const *packet, int packet_size); /* ... */ #endif /* OPENOCD_TARGET_SMP_H */
Details
Show:
from
Types: Columns:
Click anywhere in the source to view detailed information here...