binutils-gdb/bfd/init.c

80 lines
1.7 KiB
C
Raw Normal View History

1991-10-01 04:43:11 +01:00
/* bfd initialization stuff
Copyright (C) 1990-1991 Free Software Foundation, Inc.
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., 675 Mass Ave, Cambridge, MA 02139, 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"
1993-11-05 20:51:52 +01:00
extern void DEFUN_VOID (bfd_section_init);
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 libbfd function to
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;
bfd_arch_init();
}
}
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 libbfd function using
initialized data. It ensures that the structures have
been initialized. Soon this function will go away, and the bfd
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();
}
}