Subversion Repositories HelenOS-historic

Rev

Rev 1596 | Rev 1719 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1596 Rev 1649
Line 24... Line 24...
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
 */
27
 */
28
 
28
 
-
 
29
/** @defgroup ns Naming Service
-
 
30
 * @brief   Naming service for HelenOS IPC.
-
 
31
 * @{
-
 
32
 */
-
 
33
 
29
/**
34
/**
30
 * @file    ns.c
35
 * @file    ns.c
31
 * @brief   Naming service for HelenOS IPC.
36
 * @brief   Naming service for HelenOS IPC.
32
 */
37
 */
33
 
38
 
-
 
39
 
34
#include <ipc/ipc.h>
40
#include <ipc/ipc.h>
35
#include <ipc/ns.h>
41
#include <ipc/ns.h>
36
#include <ipc/services.h>
42
#include <ipc/services.h>
37
#include <stdio.h>
43
#include <stdio.h>
38
#include <unistd.h>
44
#include <unistd.h>
Line 249... Line 255...
249
void ns_remove(link_t *item)
255
void ns_remove(link_t *item)
250
{
256
{
251
    assert(item);
257
    assert(item);
252
    free(hash_table_get_instance(item, hashed_service_t, link));
258
    free(hash_table_get_instance(item, hashed_service_t, link));
253
}
259
}
-
 
260
/**
-
 
261
 * @}
-
 
262
 */