binutils-gdb/bfd/init.c

79 lines
1.7 KiB
C
Raw Normal View History

1991-10-01 04:43:11 +01:00
/* bfd initialization stuff
Copyright (C) 1990, 91, 92, 93, 94 Free Software Foundation, Inc.
1991-10-01 04:43:11 +01:00
Written by Steve Chamberlain of Cygnus Support.
This file is part of BFD, the Binary File Descriptor library.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
1993-11-05 20:51:52 +01:00
1991-10-01 04:43:11 +01:00
#include "bfd.h"
1993-11-05 20:51:52 +01:00
#include "sysdep.h"
1991-10-01 04:43:11 +01:00
#include "libbfd.h"
extern void bfd_section_init ();
1993-11-05 20:51:52 +01:00
1991-10-01 04:43:11 +01:00
static boolean initialized = false;
1993-11-05 20:51:52 +01:00
/*
SECTION
Initialization
These are the functions that handle initializing a BFD.
*/
/*
FUNCTION
bfd_init
1991-10-01 04:43:11 +01:00
1993-11-05 20:51:52 +01:00
SYNOPSIS
void bfd_init(void);
1991-10-01 04:43:11 +01:00
1993-11-05 20:51:52 +01:00
DESCRIPTION
This routine must be called before any other BFD function to
1993-11-05 20:51:52 +01:00
initialize magical internal data structures.
1991-10-01 04:43:11 +01:00
*/
1993-11-05 20:51:52 +01:00
void
bfd_init ()
1991-10-01 04:43:11 +01:00
{
if (initialized == false)
{
initialized = true;
}
1991-10-01 04:43:11 +01:00
}
1993-11-05 20:51:52 +01:00
/*
INTERNAL_FUNCTION
bfd_check_init
1991-10-01 04:43:11 +01:00
1993-11-05 20:51:52 +01:00
SYNOPSIS
void bfd_check_init(void);
1991-10-01 04:43:11 +01:00
1993-11-05 20:51:52 +01:00
DESCRIPTION
This routine is called before any other BFD function using
1993-11-05 20:51:52 +01:00
initialized data. It ensures that the structures have
been initialized. Soon this function will go away, and the BFD
1993-11-05 20:51:52 +01:00
library will assume that <<bfd_init>> has been called.
1991-10-01 04:43:11 +01:00
*/
1993-11-05 20:51:52 +01:00
void
bfd_check_init ()
1991-10-01 04:43:11 +01:00
{
if (initialized == false) {
bfd_init();
}
}