mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-24 22:40:51 -08:00
Avoid compiler warnings about unused variables and bad casts. Copied from Perforce Change: 187188 ServerID: perforce.ravenbrook.com
152 lines
3.4 KiB
C
152 lines
3.4 KiB
C
/*
|
|
TEST_HEADER
|
|
id = $Id$
|
|
summary = destroy arena when messages are on the queue
|
|
language = c
|
|
link = testlib.o rankfmt.o
|
|
END_HEADER
|
|
*/
|
|
|
|
#include "testlib.h"
|
|
#include "mpscawl.h"
|
|
#include "mpscamc.h"
|
|
#include "mpsavm.h"
|
|
#include "mpsclo.h"
|
|
#include "rankfmt.h"
|
|
|
|
|
|
#define genCOUNT (3)
|
|
|
|
static mps_gen_param_s testChain[genCOUNT] = {
|
|
{ 6000, 0.90 }, { 8000, 0.65 }, { 16000, 0.50 } };
|
|
|
|
|
|
void *stackpointer;
|
|
|
|
mps_arena_t arena;
|
|
|
|
int final_count = 0;
|
|
|
|
|
|
static void test(void)
|
|
{
|
|
mps_pool_t poolamc, poolawl, poollo;
|
|
mps_thr_t thread;
|
|
mps_root_t root0, root1;
|
|
|
|
mps_fmt_t format;
|
|
mps_chain_t chain;
|
|
mps_ap_t apamc, apawl, aplo;
|
|
|
|
mycell *a, *b, *c, *d;
|
|
|
|
long int j;
|
|
|
|
cdie(mps_arena_create(&arena, mps_arena_class_vm(), (size_t)1024*1024*30),
|
|
"create arena");
|
|
|
|
cdie(mps_thread_reg(&thread, arena), "register thread");
|
|
cdie(mps_root_create_reg(&root0, arena, mps_rank_ambig(), 0, thread,
|
|
mps_stack_scan_ambig, stackpointer, 0),
|
|
"create root");
|
|
|
|
cdie(mps_root_create_table(&root1, arena, mps_rank_ambig(), 0,
|
|
(mps_addr_t*)&exfmt_root, 1),
|
|
"create table root");
|
|
|
|
cdie(mps_fmt_create_A(&format, arena, &fmtA),
|
|
"create format");
|
|
|
|
die(mps_chain_create(&chain, arena, genCOUNT, testChain), "chain_create");
|
|
|
|
die(mmqa_pool_create_chain(&poolamc, arena, mps_class_amc(), format, chain),
|
|
"create pool(amc)");
|
|
|
|
cdie(mps_pool_create(&poolawl, arena, mps_class_awl(), format, getassociated),
|
|
"create pool(awl)");
|
|
|
|
cdie(mps_pool_create(&poollo, arena, mps_class_lo(), format),
|
|
"create pool");
|
|
|
|
cdie(mps_ap_create(&apawl, poolawl, mps_rank_weak()),
|
|
"create ap(amc)");
|
|
|
|
cdie(mps_ap_create(&apamc, poolamc, mps_rank_exact()),
|
|
"create ap(awl)");
|
|
|
|
cdie(mps_ap_create(&aplo, poollo, mps_rank_exact()),
|
|
"create ap");
|
|
|
|
mps_message_type_enable(arena, mps_message_type_finalization());
|
|
|
|
/* register loads of objects for finalization (1000*4) */
|
|
|
|
a = allocone(apamc, 2, 1);
|
|
b = a;
|
|
|
|
for (j=0; j<1000; j++) {
|
|
a = allocone(apamc, 2, mps_rank_exact());
|
|
c = allocone(apawl, 2, mps_rank_weak());
|
|
d = allocone(aplo, 2, mps_rank_exact()); /* rank irrelevant here! */
|
|
mps_finalize(arena, (mps_addr_t*)&a);
|
|
mps_finalize(arena, (mps_addr_t*)&c);
|
|
mps_finalize(arena, (mps_addr_t*)&d);
|
|
mps_finalize(arena, (mps_addr_t*)&d);
|
|
final_count += 4;
|
|
}
|
|
|
|
/* throw them all away and collect everything */
|
|
|
|
comment("b = %p", b);
|
|
a = NULL;
|
|
b = NULL;
|
|
c = NULL;
|
|
d = NULL;
|
|
|
|
mps_root_destroy(root0);
|
|
mps_root_destroy(root1);
|
|
comment("Destroyed roots.");
|
|
|
|
mps_arena_collect(arena);
|
|
|
|
while(mps_message_poll(arena) == 0) {
|
|
a = allocdumb(apawl, 1024, mps_rank_weak());
|
|
a = allocdumb(apamc, 1024, mps_rank_exact());
|
|
a = allocdumb(aplo, 1024, mps_rank_exact());
|
|
mps_arena_collect(arena);
|
|
}
|
|
|
|
/* how many are left? (n.b. ideally this would be 0 but
|
|
there's no guarantee)
|
|
*/
|
|
|
|
/* now to test leaving messages open for a long time! */
|
|
|
|
mps_arena_park(arena);
|
|
mps_ap_destroy(apawl);
|
|
mps_ap_destroy(apamc);
|
|
mps_ap_destroy(aplo);
|
|
comment("Destroyed aps.");
|
|
|
|
mps_pool_destroy(poolamc);
|
|
mps_pool_destroy(poolawl);
|
|
mps_pool_destroy(poollo);
|
|
comment("Destroyed pools.");
|
|
|
|
mps_chain_destroy(chain);
|
|
mps_fmt_destroy(format);
|
|
mps_thread_dereg(thread);
|
|
mps_arena_destroy(arena);
|
|
comment("Destroyed arena.");
|
|
}
|
|
|
|
|
|
int main(void)
|
|
{
|
|
void *m;
|
|
stackpointer=&m; /* hack to get stack pointer */
|
|
|
|
easy_tramp(test);
|
|
pass();
|
|
return 0;
|
|
}
|