cec4879206
* cygtls.h (_threadinfo::lock): Remove wait argument. (_threadinfo::interrupt_setup): Remove retaddr argument. * exceptions.cc (_threadinfo::interrupt_setup): Ditto. (_threadinfo::interrupt_now): Accommodate change to interrupt_setup argument. (setup_handler): Ditto. Always lock sig stack prior to determining interrupt method. * gendef (_sigfe): Correct thinko regarding cmpxchg. (_sigbe): Ditto. (_threadinfo::lock): Ditto. (_threadinfo::pop): Eliminate left-over stack unlock. * sigproc.cc (proc_subproc): Chnage debugging output to printed warning.
35 lines
1.1 KiB
C
35 lines
1.1 KiB
C
/* cygmalloc.h: cygwin DLL malloc stuff
|
|
|
|
Copyright 2002, 2003, 2004 Red Hat, Inc.
|
|
|
|
This file is part of Cygwin.
|
|
|
|
This software is a copyrighted work licensed under the terms of the
|
|
Cygwin license. Please consult the file "CYGWIN_LICENSE" for
|
|
details. */
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
void dlfree (void *p) __attribute__ ((regparm (1)));
|
|
void *dlmalloc (unsigned size) __attribute__ ((regparm (1)));
|
|
void *dlrealloc (void *p, unsigned size) __attribute__ ((regparm (2)));
|
|
void *dlcalloc (size_t nmemb, size_t size) __attribute__ ((regparm (2)));
|
|
void *dlmemalign (size_t alignment, size_t bytes) __attribute__ ((regparm (2)));
|
|
void *dlvalloc (size_t bytes) __attribute__ ((regparm (1)));
|
|
size_t dlmalloc_usable_size (void *p) __attribute__ ((regparm (1)));
|
|
int dlmalloc_trim (size_t) __attribute__ ((regparm (1)));
|
|
int dlmallopt (int p, int v) __attribute__ ((regparm (2)));
|
|
void dlmalloc_stats ();
|
|
|
|
#ifndef __INSIDE_CYGWIN__
|
|
# define USE_DL_PREFIX 1
|
|
#else
|
|
# define __malloc_lock() mallock->acquire ()
|
|
# define __malloc_unlock() mallock->release ()
|
|
extern muto *mallock;
|
|
#endif
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|