repo.or.cz
/
zen-stable.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
OMAPDSS: VENC: fix NULL pointer dereference in DSS2 VENC sysfs debug attr on OMAP4
[zen-stable.git]
/
include
/
linux
/
un.h
blob
3ed3e46c1b1f7ff4688a52edefbba051fba600bb
1
#ifndef _LINUX_UN_H
2
#define _LINUX_UN_H
3
4
#include <linux/socket.h>
5
6
#define UNIX_PATH_MAX 108
7
8
struct
sockaddr_un
{
9
__kernel_sa_family_t sun_family
;
/* AF_UNIX */
10
char
sun_path
[
UNIX_PATH_MAX
];
/* pathname */
11
};
12
13
#endif
/* _LINUX_UN_H */