From: Philip Homburg Date: Fri, 27 Apr 2007 13:03:33 +0000 (+0000) Subject: Publish endpoints in ds. X-Git-Tag: v3.1.4~390 X-Git-Url: http://zhaoyanbai.com/repos/named-checkzone.html?a=commitdiff_plain;h=02a229f14d5704fe7c941d850ae41681750c6da9;p=minix.git Publish endpoints in ds. --- diff --git a/servers/rs/manager.c b/servers/rs/manager.c index fce3fcaf8..44029f35f 100644 --- a/servers/rs/manager.c +++ b/servers/rs/manager.c @@ -10,6 +10,7 @@ #include #include #include +#include #include #include #include @@ -828,6 +829,11 @@ endpoint_t *endpoint; rproc_ptr[child_proc_nr_n] = rp; /* mapping for fast access */ if(endpoint) *endpoint = child_proc_nr_e; /* send back child endpoint */ + + s= ds_publish_u32(rp->r_label, child_proc_nr_e); + if (s != OK) + printf("start_service: ds_publish_u32 failed: %d\n", s); + return(OK); }