diff options
author | Ulrich Weigand <uweigand@de.ibm.com> | 2004-10-19 17:47:54 +0000 |
---|---|---|
committer | Ulrich Weigand <uweigand@gcc.gnu.org> | 2004-10-19 17:47:54 +0000 |
commit | e5fa845c7b10e8411acc0e5609a23c02633fde47 (patch) | |
tree | f78a7aeb9b4564e0d97e0773dc6db662bbc514df /boehm-gc | |
parent | 953312a85a77cc8f9760625283b3e80da54541b6 (diff) | |
download | gcc-e5fa845c7b10e8411acc0e5609a23c02633fde47.zip gcc-e5fa845c7b10e8411acc0e5609a23c02633fde47.tar.gz gcc-e5fa845c7b10e8411acc0e5609a23c02633fde47.tar.bz2 |
gc_priv.h (GC_generic_malloc_words_small_inner): Add prototype.
* include/private/gc_priv.h (GC_generic_malloc_words_small_inner):
Add prototype.
From-SVN: r89283
Diffstat (limited to 'boehm-gc')
-rw-r--r-- | boehm-gc/ChangeLog | 5 | ||||
-rw-r--r-- | boehm-gc/include/private/gc_priv.h | 4 |
2 files changed, 9 insertions, 0 deletions
diff --git a/boehm-gc/ChangeLog b/boehm-gc/ChangeLog index 2e3fcc4..484588a 100644 --- a/boehm-gc/ChangeLog +++ b/boehm-gc/ChangeLog @@ -1,3 +1,8 @@ +2004-10-19 Ulrich Weigand <uweigand@de.ibm.com> + + * include/private/gc_priv.h (GC_generic_malloc_words_small_inner): + Add prototype. + 2004-10-13 Kazuhiro Inaoka <inaoka.kazuhiro@renesas.com> * include/private/gcconfig.h: Add m32r-linux target. diff --git a/boehm-gc/include/private/gc_priv.h b/boehm-gc/include/private/gc_priv.h index 561e403..e5bd52b 100644 --- a/boehm-gc/include/private/gc_priv.h +++ b/boehm-gc/include/private/gc_priv.h @@ -1632,6 +1632,10 @@ ptr_t GC_generic_malloc_ignore_off_page GC_PROTO((size_t b, int k)); /* are ignored. */ ptr_t GC_generic_malloc_inner GC_PROTO((word lb, int k)); /* Ditto, but I already hold lock, etc. */ +ptr_t GC_generic_malloc_words_small_inner GC_PROTO((word lw, int k)); + /* Analogous to the above, but assumes */ + /* a small object size, and bypasses */ + /* MERGE_SIZES mechanism. */ ptr_t GC_generic_malloc_words_small GC_PROTO((size_t lw, int k)); /* As above, but size in units of words */ /* Bypasses MERGE_SIZES. Assumes */ |