4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-24 21:17:31 +08:00

Merge pull request #1615 from uestczyh222/bypass

[Components][pipe]暴露 rt_pipe_delete 接口
This commit is contained in:
Bernard Xiong 2018-07-10 21:11:53 +08:00 committed by GitHub
commit f94cae3680
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -32,5 +32,5 @@ struct rt_pipe_device
typedef struct rt_pipe_device rt_pipe_t; typedef struct rt_pipe_device rt_pipe_t;
rt_pipe_t *rt_pipe_create(const char *name, int bufsz); rt_pipe_t *rt_pipe_create(const char *name, int bufsz);
int rt_pipe_delete(const char *name);
#endif /* PIPE_H__ */ #endif /* PIPE_H__ */