[DGD] Object Manager missing some objects

Par Winzell zell at skotos.net
Fri Feb 3 14:54:01 CET 2006


Neil McBride wrote:

> As you can see, I'm 7 objects short of what status() is telling me exist. 
> Is there any way to find out what objects DGD knows about - either compile
> time flags or otherwise?  Or is there some other explanation for why I
> can't match the 63 objects that it knows about?

Here's what we use. Is this what you need?


private mixed *
get_initial_kernel_programs() {
     return ({
	DRIVER,		({ }),
	AUTO,		({ }),

	OBJREGD,	({ AUTO }),
	RSRCD,		({ AUTO }),
	ACCESSD,	({ AUTO }),
	USERD,		({ AUTO }),

	API_ACCESS,	({ AUTO }),
	API_RSRC,	({ AUTO }),
	API_USER,	({ AUTO }),
	API_TLS,	({ AUTO }),

	LIB_CONN,	({ AUTO }),
	LIB_USER,	({ AUTO }),
	LIB_WIZTOOL,	({ API_ACCESS, API_RSRC, API_USER }),

	RSRCOBJ,	({ AUTO }),
	BINARY_CONN,	({ LIB_CONN }),
	TELNET_CONN,	({ LIB_CONN }),
	DEFAULT_USER,	({ LIB_USER, API_USER, API_RSRC }),
	DEFAULT_WIZTOOL,	({ LIB_WIZTOOL }),
	    });
}



More information about the DGD mailing list