代码搜索:malloc
找到约 10,000 项符合「malloc」的源代码
代码结果 10,000
www.eeworm.com/read/339831/12202153
h malloc.h
#ifndef JOS_INC_MALLOC_H
#define JOS_INC_MALLOC_H 1
void *malloc(size_t size);
void free(void *addr);
#endif
www.eeworm.com/read/253315/12229825
c malloc.c
www.eeworm.com/read/253315/12230039
c malloc.c
www.eeworm.com/read/252157/12296822
h malloc.h
/*
A version of malloc/free/realloc written by Doug Lea and released to the
public domain. Send questions/comments/complaints/performance data
to dl@cs.oswego.edu
* VERSION 2.6.6 Sun Mar 5 1
www.eeworm.com/read/150339/12298164
c malloc.c
www.eeworm.com/read/150339/12298399
c malloc.c
www.eeworm.com/read/251557/12337788
c malloc.c
/* Include the sbrk function */
#include
int has_initialized = 0;
void *managed_memory_start;
void *last_valid_address;
void malloc_init()
{
/* grab the last valid address from the
www.eeworm.com/read/148833/12422584
h malloc.h
/* Prototypes and definition for malloc implementation.
Copyright (C) 1996,97,99,2000,2002,2003,2004 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library
www.eeworm.com/read/148833/12422643
c malloc.c
/* Malloc implementation for multiple threads without lock contention.
Copyright (C) 1996-2002, 2003, 2004 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed b
www.eeworm.com/read/250172/12426617
c malloc.c
/*
* malloc.c --- a general purpose kernel memory allocator for Linux.
*
* Written by Theodore Ts'o (tytso@mit.edu), 11/29/91
*
* This routine is written to be as fast as possible, so that it
*