blob: 8185681de7f64ff427f43f27ebe36c6a04252790 [file] [log] [blame]
vapier45a8ba02009-07-20 10:59:32 +00001/* $Header: /cvsroot/ltp/ltp/lib/get_high_address.c,v 1.6 2009/07/20 10:59:32 vapier Exp $ */
nstraz090ed002000-08-04 20:48:22 +00002
3/*
robbiew85944b72006-07-19 14:00:55 +00004 * Copyright (c) 2000 Silicon Graphics, Inc. All Rights Reserved.
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of version 2 of the GNU General Public License as
8 * published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it would be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
13 *
14 * Further, this software is distributed without any warranty that it is
15 * free of the rightful claim of any third person regarding infringement
16 * or the like. Any license provided herein, whether implied or
17 * otherwise, applies only to this software file. Patent licenses, if
18 * any, provided herein do not apply to combinations of this program with
19 * other software, or any other product whatsoever.
20 *
21 * You should have received a copy of the GNU General Public License along
22 * with this program; if not, write the Free Software Foundation, Inc., 59
23 * Temple Place - Suite 330, Boston MA 02111-1307, USA.
24 *
25 * Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,
26 * Mountain View, CA 94043, or:
27 *
28 * http://www.sgi.com
29 *
30 * For further information regarding this notice, see:
31 *
32 * http://oss.sgi.com/projects/GenInfo/NoticeExplan/
nstraz090ed002000-08-04 20:48:22 +000033 */
34
vapier45a8ba02009-07-20 10:59:32 +000035#include <unistd.h>
nstraz090ed002000-08-04 20:48:22 +000036
subrata_modak88c166c2009-06-09 16:01:20 +000037char *get_high_address(void)
nstraz090ed002000-08-04 20:48:22 +000038{
iyermanoj627d6462002-01-24 04:58:00 +000039 return (char *)sbrk(0) + (4 * getpagesize());
nstraz090ed002000-08-04 20:48:22 +000040}