~ubuntu-branches/ubuntu/utopic/trousers/utopic

« back to all changes in this revision

Viewing changes to src/include/spi_utils.h

  • Committer: Package Import Robot
  • Author(s): Pierre Chifflier
  • Date: 2013-08-20 18:01:47 UTC
  • mfrom: (1.1.7)
  • Revision ID: package-import@ubuntu.com-20130820180147-ucz33jh8z2qx47ya
Tags: 0.3.11.2-1
* Imported Upstream version 0.3.11.2
* Upstream license changed to BSD
* Example tools are not shipped anymore
* Remove 05-gcc47.patch, not needed anymore
* Updated symbols file

Show diffs side-by-side

added added

removed removed

Lines of Context:
44
44
#define TSS_PSFILE_INCREMENT_NUM_KEYS   1
45
45
#define TSS_PSFILE_DECREMENT_NUM_KEYS   0
46
46
 
 
47
#ifdef __GNUC__
 
48
#define __no_optimize __attribute__((optimize("O0")))
 
49
#else
 
50
#define __no_optimize
 
51
#endif
 
52
 
47
53
void *calloc_tspi(TSS_HCONTEXT, UINT32);
48
54
TSS_RESULT free_tspi(TSS_HCONTEXT, void *);
49
55
TSS_RESULT __tspi_add_mem_entry(TSS_HCONTEXT, void *);
 
56
void * __no_optimize __tspi_memset(void *, int, size_t);
50
57
 
51
58
/* secrets.c */
52
59