diff options
Diffstat (limited to 'src/include/req_mgr.h')
-rw-r--r-- | src/include/req_mgr.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/include/req_mgr.h b/src/include/req_mgr.h new file mode 100644 index 0000000..3804896 --- /dev/null +++ b/src/include/req_mgr.h @@ -0,0 +1,26 @@ + +/* + * Licensed Materials - Property of IBM + * + * trousers - An open source TCG Software Stack + * + * (C) Copyright International Business Machines Corp. 2004 + * + */ + + +#ifndef _REQ_MGR_H_ +#define _REQ_MGR_H_ + +#include "threads.h" + +struct tpm_req_mgr +{ + MUTEX_DECLARE(queue_lock); +}; + +TSS_RESULT req_mgr_init(); +TSS_RESULT req_mgr_final(); +TSS_RESULT req_mgr_submit_req(BYTE *); + +#endif |