summaryrefslogtreecommitdiffstats
path: root/trunk/src/space.h
blob: 5c9f725d0f7c2bd490af2afba4d8f1eeb06449cc (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
30
31
32
33
34
35
36
37
38
39
/* Copyright (C) 2001, 2004 Red Hat, Inc.
   Written by Jakub Jelinek <jakub@redhat.com>, 2001.

   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, 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.  */

#ifndef SPACE_H
#define SPACE_H

struct readonly_adjust
{
  off_t basemove_adjust;
  GElf_Addr basemove_end;
  int moveend;
  int move2;
  int newcount, *new;
  struct section_move *move;
};

void insert_readonly_section (GElf_Ehdr *ehdr, GElf_Shdr *shdr, int n,
			      struct readonly_adjust *adjust);
int remove_readonly_section (GElf_Ehdr *ehdr, GElf_Shdr *shdr, int n,
			     struct readonly_adjust *adjust);
int find_readonly_space (DSO *dso, GElf_Shdr *add, GElf_Ehdr *ehdr,
			 GElf_Phdr *phdr, GElf_Shdr *shdr,
			 struct readonly_adjust *adjust);

#endif /* SPACE_H */