blob: 578fdaa6dc172760c0aef63b7fd97be5ba53a1a5 (
plain)
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
|
/************************************************************
(C) Copyright 1987-1992
Lynx Real-Time Systems, Inc.
Los Gatos, CA
All rights reserved.
$Date$
$Revision$
************************************************************/
#ifndef THREAD_H
#define THREAD_H
extern void init_thread_list PARAMS ((void));
extern void add_thread PARAMS ((int));
extern int in_thread_list PARAMS ((int));
#if 0
#ifdef __STDC__
struct _bfd;
#endif
extern void bfd_get_core_threads PARAMS ((struct _bfd *));
#endif
#endif /* THREAD_H */
|