2 * Copyright (c) 1999 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * Copyright (c) 1999-2003 Apple Computer, Inc. All Rights Reserved.
8 * This file contains Original Code and/or Modifications of Original Code
9 * as defined in and that are subject to the Apple Public Source License
10 * Version 2.0 (the 'License'). You may not use this file except in
11 * compliance with the License. Please obtain a copy of the License at
12 * http://www.opensource.apple.com/apsl/ and read it before using this
15 * The Original Code and all software distributed under the License are
16 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
17 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
18 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
20 * Please see the License for the specific language governing rights and
21 * limitations under the License.
23 * @APPLE_LICENSE_HEADER_END@
28 * Unix compatibility for sbrk system call.
31 * 09-Mar-90 Gregg Kellogg (gk) at NeXT.
32 * include <kern/mach_interface.h> instead of <kern/mach.h>
34 * 14-Feb-89 Avadis Tevanian (avie) at NeXT.
35 * Total rewrite using a fixed area of VM from break region.
38 #include <mach/mach.h> /* for vm_allocate, vm_offset_t */
39 #include <mach/vm_statistics.h>
40 #include <sys/types.h> /* for caddr_t */
42 static int sbrk_needs_init
= TRUE
;
43 static vm_size_t sbrk_region_size
= 4*1024*1024; /* Well, what should it be? */
44 static vm_address_t sbrk_curbrk
;
54 if (sbrk_needs_init
) {
55 sbrk_needs_init
= FALSE
;
57 * Allocate a big region to simulate break region.
59 ret
= vm_allocate(mach_task_self(), &sbrk_curbrk
, sbrk_region_size
,
60 VM_MAKE_TAG(VM_MEMORY_SBRK
)|TRUE
);
61 if (ret
!= KERN_SUCCESS
)
66 return((caddr_t
)sbrk_curbrk
);
68 sbrk_region_size
-= size
;
69 if (sbrk_region_size
< 0)
71 return((caddr_t
)(sbrk_curbrk
- size
));