Changeset 15f3c3f in mainline for uspace/lib/c/include/ipc/loc.h


Ignore:
Timestamp:
2011-06-22T22:00:52Z (14 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
86ffa27f
Parents:
ef09a7a
Message:

Rename devmap to loc, devfs to locfs.

File:
1 moved

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/include/ipc/loc.h

    ref09a7a r15f3c3f  
    11/*
    22 * Copyright (c) 2007 Josef Cejka
     3 * Copyright (c) 2011 Jiri Svoboda
    34 * All rights reserved.
    45 *
     
    2728 */
    2829
    29 /** @addtogroup devmap
     30/** @addtogroup loc
    3031 * @{
    3132 */
    3233
    33 #ifndef LIBC_IPC_DEVMAP_H_
    34 #define LIBC_IPC_DEVMAP_H_
     34#ifndef LIBC_IPC_LOC_H_
     35#define LIBC_IPC_LOC_H_
    3536
    3637#include <ipc/common.h>
    3738
    38 #define DEVMAP_NAME_MAXLEN  255
     39#define LOC_NAME_MAXLEN  255
    3940
    40 typedef sysarg_t devmap_handle_t;
     41typedef sysarg_t service_id_t;
    4142
    4243typedef enum {
    43         DEV_HANDLE_NONE,
    44         DEV_HANDLE_NAMESPACE,
    45         DEV_HANDLE_DEVICE
    46 } devmap_handle_type_t;
     44        LOC_OBJECT_NONE,
     45        LOC_OBJECT_NAMESPACE,
     46        LOC_OBJECT_SERVICE
     47} loc_object_type_t;
    4748
    4849typedef enum {
    49         DEVMAP_DRIVER_REGISTER = IPC_FIRST_USER_METHOD,
    50         DEVMAP_DRIVER_UNREGISTER,
    51         DEVMAP_DEVICE_REGISTER,
    52         DEVMAP_DEVICE_UNREGISTER,
    53         DEVMAP_DEVICE_GET_HANDLE,
    54         DEVMAP_NAMESPACE_GET_HANDLE,
    55         DEVMAP_HANDLE_PROBE,
    56         DEVMAP_NULL_CREATE,
    57         DEVMAP_NULL_DESTROY,
    58         DEVMAP_GET_NAMESPACE_COUNT,
    59         DEVMAP_GET_DEVICE_COUNT,
    60         DEVMAP_GET_NAMESPACES,
    61         DEVMAP_GET_DEVICES
    62 } devmap_request_t;
     50        LOC_SERVER_REGISTER = IPC_FIRST_USER_METHOD,
     51        LOC_SERVER_UNREGISTER,
     52        LOC_SERVICE_REGISTER,
     53        LOC_SERVICE_UNREGISTER,
     54        LOC_SERVICE_GET_ID,
     55        LOC_NAMESPACE_GET_ID,
     56        LOC_ID_PROBE,
     57        LOC_NULL_CREATE,
     58        LOC_NULL_DESTROY,
     59        LOC_GET_NAMESPACE_COUNT,
     60        LOC_GET_SERVICE_COUNT,
     61        LOC_GET_NAMESPACES,
     62        LOC_GET_SERVICES
     63} loc_request_t;
    6364
    64 /** Interface provided by devmap.
     65/** Ports provided by location service.
    6566 *
    66  * Every process that connects to devmap must ask one of following
    67  * interfaces otherwise connection will be refused.
     67 * Every process that connects to loc must ask one of following
     68 * ports, otherwise connection will be refused.
    6869 *
    6970 */
    7071typedef enum {
    71         /** Connect as device driver */
    72         DEVMAP_DRIVER = 1,
    73         /** Connect as client */
    74         DEVMAP_CLIENT,
     72        /** Service supplier (server) port */
     73        LOC_PORT_SUPPLIER = 1,
     74        /** Service consumer (client) port */
     75        LOC_PORT_CONSUMER,
    7576        /** Create new connection to instance of device that
    7677            is specified by second argument of call. */
    77         DEVMAP_CONNECT_TO_DEVICE
    78 } devmap_interface_t;
     78        LOC_CONNECT_TO_SERVICE
     79} loc_interface_t;
    7980
    8081typedef struct {
    81         devmap_handle_t handle;
    82         char name[DEVMAP_NAME_MAXLEN + 1];
    83 } dev_desc_t;
     82        service_id_t id;
     83        char name[LOC_NAME_MAXLEN + 1];
     84} loc_sdesc_t;
    8485
    8586#endif
Note: See TracChangeset for help on using the changeset viewer.