Subversion Repositories HelenOS-historic

Rev

Rev 1143 | Rev 1663 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1143 Rev 1656
Line 436... Line 436...
436
  empirically derived value that works well in most systems. You can
436
  empirically derived value that works well in most systems. You can
437
  disable mmap by setting to MAX_SIZE_T.
437
  disable mmap by setting to MAX_SIZE_T.
438
 
438
 
439
*/
439
*/
440
 
440
 
-
 
441
/** @addtogroup libcmalloc malloc
-
 
442
  * @brief Malloc originally written by Doug Lea and ported to HelenOS.
-
 
443
  * @ingroup libc
-
 
444
 * @{
-
 
445
 */
-
 
446
/** @file
-
 
447
 */
-
 
448
 
-
 
449
 
441
#include <sys/types.h>  /* For size_t */
450
#include <sys/types.h>  /* For size_t */
442
 
451
 
443
/** Non-default helenos customizations */
452
/** Non-default helenos customizations */
444
#define LACKS_FCNTL_H
453
#define LACKS_FCNTL_H
445
#define LACKS_SYS_MMAN_H
454
#define LACKS_SYS_MMAN_H
Line 4403... Line 4412...
4403
    Trial version Fri Aug 28 13:14:29 1992  Doug Lea  (dl at g.oswego.edu)
4412
    Trial version Fri Aug 28 13:14:29 1992  Doug Lea  (dl at g.oswego.edu)
4404
      * Based loosely on libg++-1.2X malloc. (It retains some of the overall
4413
      * Based loosely on libg++-1.2X malloc. (It retains some of the overall
4405
         structure of old version,  but most details differ.)
4414
         structure of old version,  but most details differ.)
4406
 
4415
 
4407
*/
4416
*/
-
 
4417
 
-
 
4418
/** @}
-
 
4419
 */
-
 
4420