Make linux_stop_lwp be a shared function
[deliverable/binutils-gdb.git] / gdb / nat / linux-nat.h
CommitLineData
96d7229d
LM
1/* Code for native debugging support for GNU/Linux (LWP layer).
2
32d0add0 3 Copyright (C) 2000-2015 Free Software Foundation, Inc.
96d7229d
LM
4
5 This file is part of GDB.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
19
20#ifndef LINUX_NAT_H
21#define LINUX_NAT_H
22
6d4ee8c6
GB
23struct lwp_info;
24
96d7229d
LM
25/* Unlike other extended result codes, WSTOPSIG (status) on
26 PTRACE_O_TRACESYSGOOD syscall events doesn't return SIGTRAP, but
27 instead SIGTRAP with bit 7 set. */
28#define SYSCALL_SIGTRAP (SIGTRAP | 0x80)
29
7b669087
GB
30/* Return the ptid of the current lightweight process. With NPTL
31 threads and LWPs map 1:1, so this is equivalent to returning the
32 ptid of the current thread. This function must be provided by
33 the client. */
34
35extern ptid_t current_lwp_ptid (void);
36
6d4ee8c6
GB
37/* Function type for the CALLBACK argument of iterate_over_lwps. */
38typedef int (iterate_over_lwps_ftype) (struct lwp_info *lwp, void *arg);
39
40/* Iterate over all LWPs. Calls CALLBACK with its second argument set
41 to DATA for every LWP in the list. If CALLBACK returns nonzero for
42 a particular LWP, return a pointer to the structure describing that
43 LWP immediately. Otherwise return NULL. This function must be
44 provided by the client. */
45
46extern struct lwp_info *iterate_over_lwps (ptid_t filter,
47 iterate_over_lwps_ftype callback,
48 void *data);
49
b2f7c7e8
GB
50/* Cause LWP to stop. This function must be provided by the
51 client. */
52
53extern void linux_stop_lwp (struct lwp_info *lwp);
54
96d7229d 55#endif /* LINUX_NAT_H */
This page took 0.177251 seconds and 4 git commands to generate.