summaryrefslogtreecommitdiff
path: root/mcon/U/sbrktype.U
blob: 088eb39be77cdc4da8f4596226590a178a33de4c (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
40
41
42
43
44
?RCS: $Id: sbrktype.U 1 2006-08-24 12:32:52Z rmanfredi $
?RCS:
?RCS: Copyright (c) 1991-1997, 2004-2006, Raphael Manfredi
?RCS: 
?RCS: You may redistribute only under the terms of the Artistic Licence,
?RCS: as specified in the README file that comes with the distribution.
?RCS: You may reuse parts of this distribution only within the terms of
?RCS: that same Artistic Licence; a copy of which may be found at the root
?RCS: of the source tree for dist 4.0.
?RCS:
?RCS: $Log: sbrktype.U,v $
?RCS: Revision 3.0  1993/08/18  12:09:43  ram
?RCS: Baseline for dist 3.0 netwide release.
?RCS:
?MAKE:sbrktype: Myread Oldconfig Loc contains Findhdr
?MAKE:	-pick add $@ %<
?S:sbrktype:
?S:	This variable defines sbrktype to be something like caddr_t, char *, 
?S:	or whatever type is used to declare sbrk() in the kernel.
?S:.
?C:Caddr_t (SBRKTYPE):
?C:	This symbol holds the type of a core address. It is inteded to be used
?C:	to safely declare the return type of system calls like sbrk(). It might
?C:	be necessary to include <sys/types.h> as well.
?C:.
?H:#define Caddr_t $sbrktype	/* <core address> type */
?H:.
: see what type sbrk is declared as in the kernel
case "$sbrktype" in
'')
	if $contains 'caddr_t;' `./findhdr sys/types.h` >/dev/null 2>&1 ; then
		dflt='caddr_t';
	else
		dflt='char *';
	fi
	;;
*)  dflt="$sbrktype"
	;;
esac
echo " "
rp="What is the return type of sbrk() on this system?"
. ./myread
sbrktype="$ans"