diff options
author | Sung-jae Park <nicesj.park@samsung.com> | 2013-08-20 12:31:33 +0900 |
---|---|---|
committer | Sung-jae Park <nicesj.park@samsung.com> | 2013-08-20 12:31:33 +0900 |
commit | 93ad8388147cee3e37ffc1f2e5f1f78384f8711e (patch) | |
tree | 0691c76c81d781664eb515b8b84e3c558ba0e859 /src | |
parent | e696120e2947e6af6088cfb597ea8751427081a8 (diff) | |
download | com-core-93ad8388147cee3e37ffc1f2e5f1f78384f8711e.tar.gz com-core-93ad8388147cee3e37ffc1f2e5f1f78384f8711e.tar.bz2 com-core-93ad8388147cee3e37ffc1f2e5f1f78384f8711e.zip |
Fix build error
[model] Redwood
[binary_type] AP
[customer] Docomo/Orange/Open
[issue#] N/A
[problem]
[cause]
[solution]
[team] HomeTF
[request]
[horizontal_expansion]
Change-Id: I8b8cc17a189e72b0009ec40fbd3ef3adbe13314e
Diffstat (limited to 'src')
-rw-r--r-- | src/com-core_packet-router.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/com-core_packet-router.c b/src/com-core_packet-router.c index 1f2adb7..b3f7b1e 100644 --- a/src/com-core_packet-router.c +++ b/src/com-core_packet-router.c @@ -140,11 +140,11 @@ static struct info { .error_list = NULL, }; -static inline struct packet *get_recv_packet(struct router *router, int *handle, pid_t *pid); -static inline int put_recv_packet(struct router *router, int handle, struct packet *packet, pid_t pid); +static struct packet *get_recv_packet(struct router *router, int *handle, pid_t *pid); +static int put_recv_packet(struct router *router, int handle, struct packet *packet, pid_t pid); -static inline struct packet *get_send_packet(struct router *router, int *handle); -static inline int put_send_packet(struct router *router, int handle, struct packet *packet); +static struct packet *get_send_packet(struct router *router, int *handle); +static int put_send_packet(struct router *router, int handle, struct packet *packet); /*! * \note @@ -964,7 +964,7 @@ static int put_send_packet(struct router *router, int handle, struct packet *pac * \NOTE * Running thread: Client / Server leaf thread */ -static inline int put_recv_packet(struct router *router, int handle, struct packet *packet, pid_t pid) +static int put_recv_packet(struct router *router, int handle, struct packet *packet, pid_t pid) { /*! * If a packet is NULL, the connection is terminated @@ -1003,7 +1003,7 @@ static inline int put_recv_packet(struct router *router, int handle, struct pack * \NOTE * Running thread: Send thread */ -static inline struct packet *get_send_packet(struct router *router, int *handle) +static struct packet *get_send_packet(struct router *router, int *handle) { struct packet *packet = NULL; struct dlist *l; @@ -1032,7 +1032,7 @@ static inline struct packet *get_send_packet(struct router *router, int *handle) * \NOTE * Running thread: Main thread */ -static inline struct packet *get_recv_packet(struct router *router, int *handle, pid_t *pid) +static struct packet *get_recv_packet(struct router *router, int *handle, pid_t *pid) { struct packet *packet = NULL; struct dlist *l; |