source: mainline/uspace/lib/c/include/ipc/ns.h@ cb7be8f

Last change on this file since cb7be8f was d7f7a4a, checked in by Jiří Zárevúcky <zarevucky.jiri@…>, 3 years ago

Replace some license headers with SPDX identifier

Headers are replaced using tools/transorm-copyright.sh only
when it can be matched verbatim with the license header used
throughout most of the codebase.

  • Property mode set to 100644
File size: 384 bytes
RevLine 
[06502f7d]1/*
[d7f7a4a]2 * SPDX-FileCopyrightText: 2006 Ondrej Palkovsky
[06502f7d]3 *
[d7f7a4a]4 * SPDX-License-Identifier: BSD-3-Clause
[06502f7d]5 */
6
[fadd381]7/** @addtogroup libcipc
[b2951e2]8 * @{
9 */
10/** @file
11 */
12
[4805495]13#ifndef _LIBC_IPC_NS_H_
14#define _LIBC_IPC_NS_H_
[06502f7d]15
[2c577e0b]16#include <ipc/common.h>
[ca3ba3a]17
18typedef enum {
19 NS_PING = IPC_FIRST_USER_METHOD,
[7b616e2]20 NS_REGISTER,
[9b1baac]21 NS_REGISTER_BROKER,
[7114d83]22 NS_TASK_WAIT,
[5d96851b]23 NS_ID_INTRO,
[7114d83]24 NS_RETVAL
[ca3ba3a]25} ns_request_t;
26
[06502f7d]27#endif
[b2951e2]28
[fadd381]29/** @}
[b2951e2]30 */
Note: See TracBrowser for help on using the repository browser.