From: José Bollo Date: Wed, 27 Apr 2016 10:02:25 +0000 (+0200) Subject: adds store/unstore for afb_req X-Git-Tag: blowfish_2.0.1~158 X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=commitdiff_plain;h=34acb0f8d191593c9761e027424f13ae42831133;p=src%2Fapp-framework-binder.git adds store/unstore for afb_req Change-Id: If93e243378efbb6329bb9cc60d869261ddc33c48 Signed-off-by: José Bollo --- diff --git a/include/afb-req-itf.h b/include/afb-req-itf.h index f03ce868..d4ade2be 100644 --- a/include/afb-req-itf.h +++ b/include/afb-req-itf.h @@ -120,12 +120,28 @@ static inline void afb_req_session_close(struct afb_req req) req.itf->session_close(req.req_closure); } +#include + +static inline struct afb_req *afb_req_store(struct afb_req req) +{ + struct afb_req *result = malloc(sizeof *result); + if (result != NULL) + *result = req; + return result; +} + +static inline struct afb_req afb_req_unstore(struct afb_req *req) +{ + struct afb_req result = *req; + free(req); + return result; +} + #if !defined(_GNU_SOURCE) # error "_GNU_SOURCE must be defined for using vasprintf" #endif #include -#include #include static inline void afb_req_fail_v(struct afb_req req, const char *status, const char *info, va_list args)