1CMAP_TRACK_DELETE(3C)orosync Cluster Engine Programmer's ManuCaMlAP_TRACK_DELETE(3)
2
3
4
6 cmap_track_delete - Remove tracking of values in CMAP
7
8
10 #include <corosync/cmap.h>
11
12
13 cs_error_t cmap_track_delete (cmap_handle_t handle, cmap_track_handle_t
14 track_handle);
15
16
18 The cmap_track_delte function is used to remove tracking of values
19 changed in CMAP. The handle argument is connection to CMAP database
20 obtained by calling cmap_initialize(3) function. track_handle argument
21 is iterator handle obtained by cmap_track_add(3) function.
22
23
25 This call returns the CS_OK value if successful. CS_ERR_BAD_HANDLE
26 error is returned when track_handle is invalid.
27
28
30 cmap_track_add(3), cmap_initialize(3), cmap_overview(3)
31
32 CS_ERR_TRY_AGAIN Resource temporarily unavailable
33
34 CS_ERR_INVALID_PARAM Invalid argument
35
36 CS_ERR_ACCESS Permission denied
37
38 CS_ERR_LIBRARY The connection failed
39
40 CS_ERR_INTERRUPT System call interrupted by a signal
41
42 CS_ERR_NOT_SUPPORTED The requested protocol/functionality not supported
43
44 CS_ERR_MESSAGE_ERROR Incorrect auth message received
45
46 CS_ERR_NO_MEMORY Not enough memory to complete the requested task
47
48
49
50corosync Man Page 06/02/2012 CMAP_TRACK_DELETE(3)