Attribute Macro optee_utee::ta_close_session

#[ta_close_session]
Expand description

Attribute to declare the entry point of closing a session. Session context raw pointer (*mut T) can be defined as an optional parameter.

ยงExamples

#[ta_close_session]
fn close_session(sess_ctx: &mut T) { }

#[ta_close_session]
fn close_session() { }