Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

handler(3) [debian man page]

ApplicationHandler(3)					     Library Functions Manual					     ApplicationHandler(3)

NAME
ApplicationHandler - Application objects modification methods. SYNOPSIS
#include <iqueue.h> Inherited by MembershipBookkeeping. Public Member Functions void addParticipant (RTPApplication &app, Participant &part) void removeParticipant (RTPApplication &app, RTPApplication::ParticipantLink *pl) Protected Member Functions ApplicationHandler () virtual ~ApplicationHandler () Detailed Description Application objects modification methods. Author: Federico Montesino Pouzols fedemp@altern.org Constructor &;amp; Destructor Documentation ApplicationHandler::ApplicationHandler () [inline], [protected] virtual ApplicationHandler::~ApplicationHandler () [inline], [protected], [virtual] Member Function Documentation void ApplicationHandler::addParticipant (RTPApplication &app, Participant &part) [inline] void ApplicationHandler::removeParticipant (RTPApplication &app, RTPApplication::ParticipantLink *pl) [inline] Author Generated automatically by Doxygen for ccRTP from the source code. ccRTP Sat Jun 23 2012 ApplicationHandler(3)

Check Out this Related Man Page

Participants and synchronization sources.(3)                 Library Functions Manual                 Participants and synchronization sources.(3)

NAME
Participants and synchronization sources. - Classes class SDESItemsHolder Holds the SDES items and related information from a participant in an RTP application. class Participant A class of objects representing remote participants (RTP applications) in a multimedia session. class SyncSource Synchronization source in an RTP session. class RTPApplication An RTP application, holding identifying RTCP SDES item values. Functions __EXPORT RTPApplication & defaultApplication () Get the RTPApplication object for the 'default' application (the only one used by common applications -those that only implement one 'RTP application'). Detailed Description Function Documentation __EXPORT RTPApplication& defaultApplication () Get the RTPApplication object for the 'default' application (the only one used by common applications -those that only implement one 'RTP application'). Note that this application object differs from all the others that may be defined in that it is automatically constructed by the ccRTP stack and its CNAME is automatically assigned (as user@host), whereas the other application objects' CNAME is provided to its constructor. Examples: ccrtptest.cpp, rtphello.cpp, rtplisten.cpp, and rtpsend.cpp. Author Generated automatically by Doxygen for ccRTP from the source code. ccRTP Sat Jun 23 2012 Participants and synchronization sources.(3)
Man Page

15 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

shell script signal handler

AIX 4.3.3 I am trying to write a signal handler into a ksh shell script. I would like to capture the SIGTERM, SIGINT, and the SIGTSTP signals, print out a message to the terminal, and continue executing the script. I have found a way to block the signals: #! /bin/ksh SIGTERM=15 SIGINT=2... (2 Replies)
Discussion started by: jalburger
2 Replies

2. Programming

catching all signals in a single handler

Hi guys - got some questions... hope something helpfull will come out!!! I just want to catch every signal that can be caught and print some info by using only one handler. I use the sigaction() function and only one instance of a sigaction struct as an argument to the sigaction() function. ... (3 Replies)
Discussion started by: xtrix
3 Replies

3. Programming

signal handler for SIGCHLD

Hi, I have an c++ application which uses the function fork and execvp(). The parent does not wait until the child ends. The parents just creates children and let them do their stuff. You can see the parent program as a batch-manager. I have added a SIGCHLD handler to the program: void... (3 Replies)
Discussion started by: jens
3 Replies

4. Programming

signal handler problems

Hey guys, I am trying to write a little shell, and was writing a signal handler to handle SIGINT (I am using 'stty intr ^C' and using ctrl-C to give SIGINT). I wrote this signal handler: void handle_sigint() { write(2,"handling sigint\n",16); write(1,"\nshell% ",8); } ... (4 Replies)
Discussion started by: blowtorch
4 Replies

5. Programming

pthread_cleanup_push/pop - cleanup handler problem

void cleanUp_delete(void * p) { delete p; p = NULL; cout << "cleanUp_delete" << endl; } void connectionReader(void *thread,void*arg) { connection* c = (connection*) arg; pthread_cleanup_push(cleanUp_delete,(void*)c); int bytes; char *buffer = new (char );... (2 Replies)
Discussion started by: sonicx
2 Replies

6. Programming

Runaway SIGALRM signal handler

I have written a program to demonstrate a problem I have encountered when using BSD style asynchronous input using the O_ASYNC flag in conjunction with a real time interval timer sending regular SIGALRM signals to the program. The SIGIO handler obeys all safe practices, using only an atomic update... (8 Replies)
Discussion started by: stewartw
8 Replies

7. Shell Programming and Scripting

Getting exit status of child in trap handler

Hi, I have a trap problem when calling a child script in the background. I know there are a lot of threads here on the issue of traps and signals, I think I have read all the relevant ones, but still haven't found an answer to my problem. I'm working on Linux or HP, the script as you can see... (4 Replies)
Discussion started by: rimon
4 Replies

8. Programming

Usage of exit() inside a signal handler

Is it ok to use exit() inside a signal handler? I catch SIGUSR1 in a signal handler and I try to close a file and then exit. The result is inconsistent. Sometimes the process exit and sometimes it returns to the original state before the signal handler was invoked. Perhaps exit is not legal in... (8 Replies)
Discussion started by: Tuvia
8 Replies

9. Shell Programming and Scripting

Passing a file handler and an array from Perl to Shell Script

Hi there, I am trying to call a shell script from a Perl script. here is the code: @args = ("sh", "someshellprg.sh", "a file handler", "an array"); system(@args) == 0 or die "system @args failed: $?"; in the shell program, I examine if the arguments exits using: if then echo... (5 Replies)
Discussion started by: pinkgladiator
5 Replies

10. UNIX for Dummies Questions & Answers

Doubt with irq handler.......

Hello, I have develop a driver for my hardware and now, I need to handle a IRQ but I does not work. As I can understand, to handle a irq, it is necessary to make a request_irq(). If the return value is zero, ok, no problem to handle irq. Here is a easy example of my driver: #include... (8 Replies)
Discussion started by: webquinty
8 Replies

11. Programming

SIGCHLD interrupts its own handler

Hi. I have a program whose job it is to manage 15 child processes. Sometimes these children die (sometimes deliberately other times with a SEGV). This causes a SIGCHLD to be sent to my program which uses waitpid() in the signal handler to gather information and, in most cases, restart the child.... (3 Replies)
Discussion started by: jrichemont
3 Replies

12. Programming

Signal Handler Hangs

Hi, I have a problem with signal handler algorithm in linux. My code is hanging ( It is continuously looping inside the signal handler) . I am pasting my code here... Please provide me some help regarding this. I googled many places and wrote this code.. but doesnt seem to be working without... (6 Replies)
Discussion started by: sree_ec
6 Replies

13. UNIX for Advanced & Expert Users

Is there any shell command to show which interrupt handler handle which interrupt number?

Hi, all: Is there any shell command to show which interrupt handler handle which interrupt number in the system? li,kunlun (5 Replies)
Discussion started by: liklstar
5 Replies

14. UNIX for Dummies Questions & Answers

File Handler of an Output

Hi Guys, I hope anyone could help me on my problem: (perl or shell) I have this command: ns cluster "ns snmp show status" all Then the output is: Command was launched from partition 0. ------------------------------------------------ Executing command in server server6 Event Text... (3 Replies)
Discussion started by: rymnd_12345
3 Replies

15. Programming

Serial port signal(IRQ) handler (using C)

Hello, I'm writing some serial(UART) handler but have stuck on few issues, maybe anyone can help to show me what I'm doing wrong. Basically I'm intending to write serial RX signal handler. Application receives defined packages of data over serial which contains header and payload. Handler... (3 Replies)
Discussion started by: Lauris_k
3 Replies