1 | =head1 NAME
|
---|
2 |
|
---|
3 | TPMLIB_CancelCommand - Cancel a TPM command
|
---|
4 |
|
---|
5 | =head1 LIBRARY
|
---|
6 |
|
---|
7 | TPM library (libtpms, -ltpms)
|
---|
8 |
|
---|
9 | =head1 SYNOPSIS
|
---|
10 |
|
---|
11 | B<#include <libtpms/tpm_library.h>>
|
---|
12 |
|
---|
13 | B<uint32_t TPMLIB_CancelCommand(void);>
|
---|
14 |
|
---|
15 | =head1 DESCRIPTION
|
---|
16 |
|
---|
17 | The B<TPMLIB_CancelCommand()> function indicates that the ongoing processing
|
---|
18 | of a TPM command is to be cancelled. The cancellation will only
|
---|
19 | be effective for certain time consuming operations, such as the creation
|
---|
20 | of keys.
|
---|
21 |
|
---|
22 | Note that an implementation that wants to support cancellation of commands
|
---|
23 | needs to process TPM commands in one thread and cancel them in another.
|
---|
24 |
|
---|
25 | =head1 SEE ALSO
|
---|
26 |
|
---|
27 | B<TPMLIB_Process>(3)
|
---|
28 |
|
---|
29 | =cut
|
---|