blob: 3804896a1b505c7e77f7ca2d8fce4b74eb95e878 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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
|