Blame view

kernel/linux-rt-4.4.41/include/uapi/linux/rpmsg_socket.h 1007 Bytes
5113f6f70   김현기   kernel add
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
  /*
   * Remote processor messaging sockets
   *
   * Copyright (C) 2011-2016 Texas Instruments Incorporated - http://www.ti.com/
   *
   * Ohad Ben-Cohen <ohad@wizery.com>
   * Suman Anna <s-anna@ti.com>
   *
   * This program is free software; you can redistribute it and/or
   * modify it under the terms of the GNU General Public License
   * version 2 as published by the Free Software Foundation.
   *
   * This program is distributed in the hope that it will be useful,
   * but WITHOUT ANY WARRANTY; without even the implied warranty of
   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   * GNU General Public License for more details.
   */
  
  #ifndef _UAPI_RPMSG_SOCKET_H
  #define _UAPI_RPMSG_SOCKET_H
  
  #include <linux/types.h>
  #include <linux/socket.h>
  
  /* user space needs this */
  #ifndef AF_RPMSG
  #define AF_RPMSG	41
  #define PF_RPMSG	AF_RPMSG
  #endif
  
  struct sockaddr_rpmsg {
  	__kernel_sa_family_t family;
  	__u32 vproc_id;
  	__u32 addr;
  };
  
  #define RPMSG_LOCALHOST ((__u32)~0UL)
  
  #endif /* _UAPI_RPMSG_SOCKET_H */