File: callback.dxx

package info (click to toggle)
libupnp 1.2.1-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 2,336 kB
  • ctags: 2,627
  • sloc: ansic: 26,038; makefile: 1,287; xml: 374
file content (13 lines) | stat: -rw-r--r-- 749 bytes parent folder | download | duplicates (17)
1
2
3
4
5
6
7
8
9
10
11
12
13
/**@name About Callbacks
 *
 * The Linux SDK for UPnP Devices contains functions that generate 
 * asynchronous callbacks. To simplify the application callback functions, 
 * these callbacks are executed on a thread owned by the SDK itself.  The 
 * SDK executes the application's callback function in a thread 
 * context so the application can allocate memory and preserve the information
 * it needs. The application can also use standard thread synchronization 
 * methods to ensure data integrity.  Due to the possibility of deadlock, the 
 * application cannot call back into the SDK during these callbacks 
 * unless explicitly noted.  There is no restriction in calling into the 
 * operating system or any other application interfaces.
 */