arm_destroy_application (3) - Linux Manuals
arm_destroy_application: destroy application data
NAME
arm_destroy_application - destroy application dataSYNOPSIS
#include <arm4.h>
arm_error_t
arm_destroy_application(
DESCRIPTION
arm_destroy_application() indicates that the registration data about an application previously registered with arm_register_application() is no longer needed.app_id is an application ID returned from an arm_register_application() call in the same process.
No sub-buffer types are currently valid with this function call, so the buffer4 pointer should be null (ARM_BUF4_NONE).
No values are currently defined for flags. The field should be zero (ARM_FLAG_NONE).
RETURN VALUE
On success, the function returns ARM_SUCCESS. A non-zero value indicates an error.ERRORS
If the return code is negative, an error occurred. If the return code is not negative, an error may or may not have occurred - the determination of what is an error and whether an error code is returned is at the discretion of the ARM implementation. The application can test the return code if it wants to provide its own error logging.This implementation returns no errors for arm_destroy_application().
CONFORMING TO
ARM Issue 4.0 C Language Bindings, Version 2EXAMPLE
None.SEE ALSO
.BR arm_register_application (3)