~ubuntu-branches/ubuntu/gutsy/trousers/gutsy

« back to all changes in this revision

Viewing changes to src/include/req_mgr.h

  • Committer: Bazaar Package Importer
  • Author(s): William Lima
  • Date: 2007-04-18 16:39:38 UTC
  • Revision ID: james.westby@ubuntu.com-20070418163938-opscl2mvvi76jiec
Tags: upstream-0.2.9.1
ImportĀ upstreamĀ versionĀ 0.2.9.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
/*
 
3
 * Licensed Materials - Property of IBM
 
4
 *
 
5
 * trousers - An open source TCG Software Stack
 
6
 *
 
7
 * (C) Copyright International Business Machines Corp. 2004
 
8
 *
 
9
 */
 
10
 
 
11
 
 
12
#ifndef _REQ_MGR_H_
 
13
#define _REQ_MGR_H_
 
14
 
 
15
#include <pthread.h>
 
16
 
 
17
struct tpm_req_mgr
 
18
{
 
19
        pthread_mutex_t queue_lock;
 
20
};
 
21
 
 
22
TSS_RESULT req_mgr_init();
 
23
TSS_RESULT req_mgr_final();
 
24
TSS_RESULT req_mgr_submit_req(BYTE *);
 
25
 
 
26
#endif