JVM Signal Handling on NT and HP-Unix

Hi
I'm trying to catch various JVM shutdown signals in my application so that the application can do some clean-up before shutting down. Here is the code that i've written...
sun.misc.SignalHandler jvmSignalHandler = new sun.misc.SignalHandler()
public void handle(sun.misc.Signal sig)
// Do some cleanup
// Call handler on interrupt signal (CTRL-C)
sun.misc.Signal.handle(new sun.misc.Signal("INT"), jvmSignalHandler);
// Call handler on terminate signal
sun.misc.Signal.handle(new sun.misc.Signal("TERM"), jvmSignalHandler);
// Call handler on abort signal
sun.misc.Signal.handle(new sun.misc.Signal("ABRT"), jvmSignalHandler);
If i run this process on NT in a dos box, the applicatin behaves fine by responding to all these signals...
e.g. If i press CTRL-C (INT), or i close the dos box (TERM), or i shutdown NT (ABRT).
However on UP-Unix, i tried kill -2 (TERM), kill -6 (ABRT) and kill -15 (INT)... Out of these, only kill -6 (ABRT) works, while the others just "kill" the application and there is no clean-up. Can anyone help if i need to use any other codes on HP-Unix, or do i need to catch any other signals in my application.
Thanks in advance
Regards
Kashif

Hope the following info(from HP-UX $man kill) is useful to you.
Signal Names and Numbers
The following table describes a few of the more common signals that
can be useful from a terminal. For a complete list and a full
description, see the header file <signal.h> and the manual entry
signal(5).
signum signame Name Description
0 SIGNULL Null Check access to pid
1 SIGHUP Hangup Terminate; can be trapped
2 SIGINT Interrupt Terminate; can be trapped
3 SIGQUIT Quit Terminate with core dump; can be trapped
9 SIGKILL Kill Forced termination; cannot be trapped
15 SIGTERM Terminate Terminate; can be trapped
24 SIGSTOP Stop Pause the process; cannot be trapped
25 SIGTSTP Terminal stop Pause the process; can be trapped
26 SIGCONT Continue Run a stopped process
BTW, do you have JavaDoc for sun.misc.Signal class in hand? I havn't. I'm not sure the name-rule for signals between HP-UX and Windows is same or not.

Similar Messages

  • Signal Handling by JVM : a probable bug

    I am facing the following problem. when i kill a running java code by (CTRL C SIGINT), then the sub processes created by the parent java program using "exec" call didn't get terminated. I ran the code on Solaris machine. This OS supports cascading termination meaning 'if a parent is dead then all the childs get terminated recursively". But i guess JVM calls its signal handler and didn't follow the rule of cascading termination. I THINK IT IS A BUG. can some one acknowledge/correct me on this issue

    I really don't think so.
    On unix boxes one can 'fork'. A fork creates a sub process (not a process.) Killing a sub process might or might not kill child sub processes.
    Runtime.exec() produces a process, not a sub process. So I would never expect that killing the parent would kill the other process.
    This would suggest that exiting the process would also kill the exec() process. There is a similar analog in perl. On unix it allows for fork and system/exec calls. An 'exec' terminates the perl script immediately. Using the same from the above, it would be useless since it would also immediately terminate the process just started with 'exec'.

  • Unix Signal Handling in Oracle Apps

    I have a number of questions regarding Signal Handling
    on Unix platforms within Oracle client code. I would like
    to ensure that my signal handling requirements do not clash with
    those of Oracle within an application.
    1. Does the Database client code register any Unix signal
    handling routines within a user application?
    2. If it does, which signals does it handle?
    3. What is the scope of these handler routines, i.e. when are
    they registered and when do
    they become de-registered?
    4. When registered, do these handler routines attempt to pass
    signals on to previously registered
    handlers (i.e. do previously registered handlers get chained)?
    5. When they are de-registered do they attempt to re-instate any
    previously registered signal handlers?
    thank you in advance for your help,
    John Tresadern
    IBM UK.
    null

    This can certainly be done, assuming you have sufficient hardware/storage resources.
    Each instance will need to have a separate Unix account (e.g. applvis, appldev etc).
    The actual details of the cloning process are outlined in MOS Doc 230672.1 (Cloning Oracle Applications Release 11i with Rapid Clone)
    HTH
    Srini

  • JVM exit handler -  for jvm invoked thro' native C

    complicated, atleast for me :) where do I find if JVM installs any exit handlers when invoked through native C app.
    OS -> HP UX 11
    java -version ->
    java version "1.4.0.02"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.0.02-021031-18:00)
    Java HotSpot(TM) Server VM (build 1.4 1.4.0.02-021031-19:15-PA_RISC2.0 PA2.0, mixed mode)
    Although jvm used is HP's hotspot, behaviour seems to be generic, so any directions are appreciated.
    In my case JNI based native shared object (on ux) is being used as a pluggin for comm with microsoft SQL2k.
    A daemon loads the pluggin (shl_load) -> transaction -> unloads (shl_unload) pluggin.
    For each tran I need to create a new JVM instance and later distroy it as it is not possible to multiple times create and distroy JVM in same process space (as encountered)
    LD_PRELOAD=.../libjvm.sl
    start the daemon( basic signals masked)
    Parent -> fork() a child process and wait for its exit status.
    Child -> Load JVM and execute reqd method
    Child -> unload JVM
    Child -> exit() the child process
    Parent ->Check the child process exit() code and carry further processing.
    Sometimes child does not exit cleanly. Even after exit() child process can be seen in process table and parent wait()'s idefinetly for child exit code.
    gdb ouput of child preocess
    #0 0xdd28ca38 in os::report_fatal_error () from /opt/java1.4/jre/lib/PA_RISC2.0/server/libjvm.sl
    #1 0xdd28dc48 in os::handle_unexpected_exception ()
    from /opt/java1.4/jre/lib/PA_RISC2.0/server/libjvm.sl
    #2 0xdd296c50 in os::Hpux::JVM_handle_hpux_signal ()
    from /opt/java1.4/jre/lib/PA_RISC2.0/server/libjvm.sl
    #3 0xdd293adc in os::Hpux::signalHandler ()
    from /opt/java1.4/jre/lib/PA_RISC2.0/server/libjvm.sl
    #4 <signal handler called>
    #5 0x7e5e6134 in ?? ()
    #6 0xc03c6fbc in __niamHelper () from /usr/lib/libCsup.2
    Can any one tell me what exactly is happening ?
    If I call [b]_exit() instead of exit() everything works fine.

    Thnx a lot,
         Finally I was able to locate atexit()'ed function which was causing the problem (setting br at exit() was not working, execution straightway stopped at #0)
    (gdb) thr 1
    [Switching to thread 1 (system thread 17555)]
    (gdb) bt
    #0 0x7e6224e0 in epc_exit_handler () from /citisafe/users/yogiraj/cs35/dll/ora_tcp.sl
    #1 0xc03c6fbc in __niamHelper () from /usr/lib/libCsup.2
    #2 0xc03c7110 in niambody () from /usr/lib/libCsup.2
    #3 0xc03c721c in _niam () from /usr/lib/libCsup.2
    #4 0xc016fe20 in exit () from /usr/lib/libc.2
    #5 0xc4f0c364 in sql_exec_custStrProc () from /citisafe/users/yogiraj/cs35/lib/libtcsql.sl
    #6 0x7ec0c9f4 in exec_ext_mgmt (p_ExtCredentials=0x7edf2878)
    at /citisafe/users/yogiraj/cs35/c/sql_app.c:251
    #7 0x9620 in adm_process_rec ()
    #8 0x8bc8 in process_pwd_requests ()
    #9 0x8684 in adm_do_ext_sync ()
    #10 0x7f5c in main ()
    Oracle client lib was the culprit.     Daemon is basically a 'C' daemon which loads pluggins for communication with various DB's including Oracle, Sybase, MS SQL etc and later unloads them on completion.
    Ora lib libclntsh.sl installed "epc_exit_handler", eventhough we had shl_unload()'ed oracle pluggin earlier the handler refrence was still around. Later when process exit()'ed may be static dealloaction mech panicked.
    Above exit() handler execution even after unloading of Oracle libs seems to be a known bug and work around suggested is to LD_PRELOAD=%ORALIB/libclntsh.sl. After LD_PRELOAD'ing exit() works fine.

  • Signal Handling Issue with OCI

    Greetings.
    I have a library using OCI with Oracle 10g.
    I am not doing any signal handling inside the library.
    I have realized after a connection is made to Oracle 10g server and successfully terminated, the ctrl+Z signal (SIGTSTP) would not be honored. If I use the same library and make no connection to database, then the signal is honored. Other signals such as SIGINT etc are OK even if I make connections to database server.
    Operations that I do using OCI are simple:
    1- initialization of context (standard env creation, set attributes, handle allocation etc)
    2- making connection
    3- inserting using SQL insert method (statement prep, defineByPos, execute)
    4- simple selection of last value of a sequence (statement prep, defineByPos, execute)
    5- clean up (OCISessionEnd, OCIServerDetach,and freeing handles)
    Again, I have no signal handling inside the library. I am using this over Solaris OS and the functionality is correct except for this signal issue.
    My questions:
    1- Is this a known issue or is this something that has been seen before?
    2- what sort of signal handling is in OCI that could potentially impact my app?
    3- Is there any solution that you could suggest?
    thank you in advance.

    I'm trying to migrate from oracle 9i HP unix to oracle 10G AIX5.3
    I'm trying to create a connection pool. Then create Many threads, with each of these
    performing an OCI Session Get at thread initialization.
    Then handing the threads work to perform on their existing OCI session to the connectionpool.
    Same thing was working fine in oracle 9i but if I try to do the same in oracle 10G seems to get locked up,
    unless the sessionget/sessionrelease are in the same working
    thread subroutine. I am trying to avoid getting a session and releasing for each unit of
    work.Instead I'd like to acquire a bunch of session against the connection pool.And then have the threads (with persistent sessions) perform periodic work....
    If utilizing a get/work/release all in the same thread and subroutine call.Then everything works, except performance is very poor.
    please find the function I'm using to achive the same.
    Experts please help me ,I'm totally struck here....
    int ConnectionOpen (Connection conn, char username, char password, char server) {
    ** Functionality : Opens a new session with Oracle.
    ** Parameters : conn - pointer to the struct Connection. It is an output parameter
    ** returns the handle to the new session.
    ** username - pointer to the char array has username.
    ** password - pointer to the char array has password.
    ** server - pointer to the char array has database name.
    ** Returns 0 on success, 1 on success with information and non-zero value on error.
    int status = 0;
    boolean sesfnd;
    text errbuf[512];
    sb4 errcode = 0;
    if (!conn) return OCI_INVALID_HANDLE;
    if (!strcasecmp (USE_SESS_POOL, "YES"))
    /* PLC44050021 Session Pool Changes*/
    if (conopen==0)
    status = OCIEnvCreate((OCIEnv **) &envhp, OCI_THREADED,
    (dvoid *)0, (dvoid *(*)(dvoid *, size_t))0,
    (dvoid *(*)(dvoid *, dvoid *, size_t))0, (void (*)(dvoid *, dvoid *))0,
    (size_t)0, (dvoid**)0);
    if (status != 0 && status != 1) return status; /*error in creating environment*/
    status = OCIHandleAlloc((dvoid *)envhp,
    (dvoid **)&errhp,
    OCI_HTYPE_ERROR,
    (size_t)0,
    (dvoid **)0);
    if ( status != 0 && status != 1 ) return status; /*error in allocating error handler*/
    status = OCIHandleAlloc((dvoid *)envhp,
    (dvoid **)&authp,
    OCI_HTYPE_AUTHINFO,
    (size_t)0,
    (dvoid **)0);
    if ( status != 0 && status != 1 ) return status; /*error in allocating error handler*/
    status = OCIHandleAlloc((dvoid *)envhp,
    (dvoid **) &poolhp,
    OCI_HTYPE_SPOOL,
    (size_t)0,
    (dvoid **)0);
    if ( status != 0 && status != 1 ) return status; /*error in allocating CPOOL Handler*/
    status = OCISessionPoolCreate((OCIEnv*)envhp,
    (OCIError*)errhp,poolhp,
    &poolName, (ub4*)&poolNameLen,
    (text*)server, (ub4)strlen(server),
    sessMin, sessMax, sessIncr,
    (text*)username, (ub4)strlen(username),
    (text*)password, (ub4)strlen(password),
    OCI_DEFAULT) ;
    if ( status != 0 && status != 1 ) return status;
    conn->envhp=(OCIEnv*)envhp;
    conn->errhp=(OCIError*)errhp;
    status=OCIAttrSet((dvoid *)authp,(ub4) OCI_HTYPE_AUTHINFO,
    (text*)username, (ub4)strlen(username),
    (ub4) OCI_ATTR_USERNAME, (OCIError*)conn->errhp);
    if ( status != 0 && status != 1 ) return status;
    status=OCIAttrSet((dvoid *) authp,(ub4) OCI_HTYPE_AUTHINFO,
    (text*)password, (ub4)strlen(password),
    (ub4) OCI_ATTR_PASSWORD, (OCIError*)conn->errhp);
    if ( status != 0 && status != 1 ) return status;
    status = OCISessionGet((OCIEnv*)conn->envhp,
    (OCIError*)conn->errhp,
    (OCISvcCtx**)&(conn->svchp),
    authp,
    (OraText *)poolName, (ub4)strlen((char*)poolName),
    (OraText *)"", (ub4)0,
    NULL, NULL,
    0,
    OCI_SESSGET_SPOOL);
    if ( status != 0 && status != 1 ) return status;
    conopen=1;
    /******* if the session pool is already established, reuse sessions out of it ********** /
    else
    conn->errhp=(OCIError*)errhp;
    conn->envhp=(OCIEnv*)envhp;
              /******* Hanging in this call ********** /
    status = OCISessionGet((OCIEnv*)conn->envhp,
    (OCIError*)conn->errhp,
    (OCISvcCtx**)&(conn->svchp),
    authp,
    (OraText *)poolName, (ub4)strlen((char*)poolName),
    (OraText *)"", (ub4)0,
    NULL, NULL,
    0,
    OCI_SESSGET_SPOOL);
    if ( status != 0 && status != 1 ) return status;
    else
    status = OCIEnvCreate((OCIEnv **) &conn->envhp, (ub4)OCI_DEFAULT,
    (dvoid *)0, (dvoid *(*)(dvoid *, size_t))0,
    (dvoid *(*)(dvoid *, dvoid *, size_t))0, (void (*)(dvoid *, dvoid *))0,
    (size_t)0, (dvoid**)0);
    if (status != 0 && status != 1) return status; /*error in creating environment*/
    status = OCIHandleAlloc((dvoid *)conn->envhp, (dvoid **)&conn->errhp, OCI_HTYPE_ERROR, (size_t)0, (dvoid **)0);
    if ( status != 0 && status != 1 ) return status; /*error in allocating error handler*/
    status = OCILogon((OCIEnv*)conn->envhp, (OCIError*)conn->errhp, (OCISvcCtx**)&(conn->svchp),
    (text*)username, (ub4)strlen(username),
    (text*)password, (ub4)strlen(password),
    (text*)server, (ub4)strlen(server));
    return status;
    }

  • OS Signal Handling problem

    Hi, I have a problem trying to handle operating system signals. The exception I get is: Exception already handled by de JVM.
    The enviroment that runs my application is:
    -IBM AIX 4.3
    -IBM JRE 1.3.0
    The process is launched with "nohup"
    The complete line is: nohup java -jar -Dlog4j.configuration=log.xml etec.jar >/dev/null 2>/dev/null &The code is:
    try
      if (senyalInterrupcion != null)
        Signal.handle(new Signal (signalName), new SignalHandler ()
          public void handle(Signal arg0)
            System.exit(0);
    catch (IllegalArgumentException ex)
      ex.printStackTrace ();
    }I know that the use of com.sun.* classes is not recommended by Sun, but I need to communicate the JVM in wich my application run with the shell, if anyone knows a better method (except RMI) please let me know.
    P.S. Sorry for my english
    Thanks in advance,
    Juanjo

    As of jdk1.3, run w/ Java -Xrs option (i.e., java -Xrs myProg) so default JVM signal handlers are not run. Then, you can install your own signal handlers using sun.misc.Signal and SignalHandler and they will not conflict with the JVM's handlers. See the following article for excellent coverage of the topic:
    http://www-106.ibm.com/developerworks/ibm/library/i-signalhandling/

  • 64-bit sigaction() Signal Handler for aio_write()

    I'm having trouble using a sigaction() specified signal handler when built as a 64 bit executable (-xarch=v9).
    The siginfo_t argument gets passed to the signal handler just fine. The problem is with the si_value.sival_ptr member. The other members (sig, type, pid ) are all okay.
    When built for 32-bits everything works fine.
    When built for 64-bits all I get is the high 32-bits of the sival_ptr, the low 32-bits are always 0.
    The signal is being generated as a result of a call to aoi_write().
    Please help - I'm in a hurry and I can't seem to find the answer.
    I can do a work-around using sival_int (it's in union with sival_ptr) and indexing a table for an address, but that's a hassle, while the pointer method is clean.
    Any help will be appreciated.
    Bruce.

    Be careful that the program is built at compile time
    with the correct 64-bit library and not inadvertantly
    with a 32-bit version. The fact that the failure is
    a seg-fault and dbx can't resolve the symbol make the
    system lib a suspect and the problem a 32 bit vs.
    64 bit version.

  • [SOLVED] fglrx(0): [drm] failed to remove DRM signal handler

    Hello!
    I'm new to Arch so please forgive me if I'm asking about something obvious.
    After spending many hours on reading and comprehension of Arch philosophy I finally dared to install Arch 2007.08-02 (Don't Panic) on my computer Fortunately I was prepared for text-mode configuration, but obviously not prepared enough... My first major problem is with the X server. I have followed strictly the instructions from the wiki and installed xorg and catalyst drivers afterwards (for Radeon X800 Pro). Now probably something is wrong with my xorg.conf, which you can see below, but there's also a bit more sophisticated problem causing this type of message in /var/log/Xorg.0.log
    (II) fglrx(0): Shutdown CMMQS
    (EE) fglrx(0): [drm] failed to remove DRM signal handler
    (II) fglrx(0): [drm] removed 1 reserved context for kernel
    (II) fglrx(0): [drm] unmapping 8192 bytes of SAREA 0x2000 at 0xb7c78000
    (II) fglrx(0): [drm] Closed DRM master.
    I couldn't find a solution either on this board and on the web as well, so I dare to ask for a little tip what to do to solve this
    Thx in advance.
    P.S. My xorg.conf
    # Auto-generated by Archie mkxcfg
    Section "ServerLayout"
    Identifier "My Layout"
    Screen 0 "aticonfig-Screen[0]" 0 0
    InputDevice "Keyboard0" "CoreKeyboard"
    InputDevice "Mouse1" "CorePointer"
    EndSection
    Section "Files"
    # FontPath "/usr/share/fonts/75dpi:unscaled"
    # FontPath "/usr/share/fonts/75dpi"
    # Additional fonts: Locale, Gimp, TTF...
    # FontPath "/usr/share/lib/X11/fonts/latin2/75dpi"
    # FontPath "/usr/share/lib/X11/fonts/latin2/100dpi"
    # True type and type1 fonts are also handled via xftlib, see /etc/X11/XftConfig!
    # FontPath "/usr/share/fonts/Type1"
    RgbPath "/usr/share/X11/rgb"
    ModulePath "/usr/lib/xorg/modules"
    FontPath "/usr/share/fonts/misc:unscaled"
    FontPath "/usr/share/fonts/misc"
    FontPath "/usr/share/fonts/100dpi:unscaled"
    FontPath "/usr/share/fonts/100dpi"
    FontPath "/usr/share/fonts/PEX"
    FontPath "/usr/share/fonts/cyrillic"
    FontPath "/usr/share/fonts/ttf/western"
    FontPath "/usr/share/fonts/ttf/decoratives"
    FontPath "/usr/share/fonts/truetype"
    FontPath "/usr/share/fonts/truetype/openoffice"
    FontPath "/usr/share/fonts/truetype/ttf-bitstream-vera"
    FontPath "/usr/share/fonts/latex-ttf-fonts"
    FontPath "/usr/share/fonts/defoma/CID"
    FontPath "/usr/share/fonts/defoma/TrueType"
    EndSection
    Section "Module"
    # Load "ddc" # ddc probing of monitor
    # Load "type1"
    # Load "synaptics"
    Load "dbe"
    Load "dri"
    Load "extmod"
    Load "glx"
    Load "bitmap" # bitmap-fonts
    Load "freetype"
    # Load "record"
    EndSection
    Section "ServerFlags"
    Option "AllowMouseOpenFail" "true"
    EndSection
    Section "InputDevice"
    Identifier "Keyboard0"
    Driver "kbd"
    Option "XkbModel" "logiaccess"
    Option "XkbLayout" "pl"
    Option "XkbOptions" "compose:rwin"
    EndSection
    Section "InputDevice"
    Identifier "Mouse1"
    Driver "mouse"
    Option "Protocol" "ExplorerPS/2"
    Option "Device" "/dev/input/mouse1"
    Option "Buttons" "7"
    Option "ZAxisMapping" "4 5"
    Option "ButtonMapping" "1 2 3 6 7"
    EndSection
    Section "Monitor"
    Identifier "aticonfig-Monitor[0]"
    Option "VendorName" "ATI Proprietary Driver"
    Option "ModelName" "Generic Autodetecting Monitor"
    Option "DPMS" "true"
    EndSection
    Section "Device"
    Identifier "aticonfig-Device[0]"
    Driver "fglrx"
    EndSection
    Section "Screen"
    Identifier "aticonfig-Screen[0]"
    Device "aticonfig-Device[0]"
    Monitor "aticonfig-Monitor[0]"
    DefaultDepth 24
    SubSection "Display"
    Viewport 0 0
    Depth 24
    EndSubSection
    EndSection
    Section "DRI"
    Mode 0666
    EndSection
    Last edited by Zibi1981 (2008-02-20 10:49:20)

    Hello quad3d@work Thanks for the interest, but I've already solved this problem. I think it was something with my xorg.conf file, because when I made some changes to it, suddenly all started to work. If You are still interested in the output of the above command, well, here it is
    [zibi1981@felipe ~]$ cat ~/.xinitrc
    #!/bin/sh
    # ~/.xinitrc
    # Executed by startx (run your window manager from here)
    # exec gnome-session
    # exec startkde
    # exec startxfce4
    # exec icewm
    # exec openbox
    # exec blackbox
    # exec fluxbox
    # exec ratpoison
    # exec dwm
    # ... or any other WM of your choosing ...
    # exec xterm
    All the lines are commented, because I use Entrance with appropriate input in /etc/inittab file
    [zibi1981@felipe ~]$ cat /etc/inittab
    # /etc/inittab
    #  Runlevels:
    #    0    Halt
    #    1(S)       Single-user
    #    2    Not used
    #    3    Multi-user
    #    4    Not used
    #    5    X11
    #    6    Reboot
    ## Only one of the following two lines can be uncommented!
    # Boot to console
    #id:3:initdefault:
    # Boot to X11
    id:5:initdefault:
    rc::sysinit:/etc/rc.sysinit
    rs:S1:wait:/etc/rc.single
    rm:2345:wait:/etc/rc.multi
    rh:06:wait:/etc/rc.shutdown
    su:S:wait:/sbin/sulogin -p
    # -8 options fixes umlauts problem on login
    c1:2345:respawn:/sbin/agetty -8 38400 vc/1 linux
    c2:2345:respawn:/sbin/agetty -8 38400 vc/2 linux
    c3:2345:respawn:/sbin/agetty -8 38400 vc/3 linux
    c4:2345:respawn:/sbin/agetty -8 38400 vc/4 linux
    c5:2345:respawn:/sbin/agetty -8 38400 vc/5 linux
    c6:2345:respawn:/sbin/agetty -8 38400 vc/6 linux
    ca::ctrlaltdel:/sbin/shutdown -t3 -r now
    # Example lines for starting a login manager
    #x:5:respawn:/usr/bin/xdm -nodaemon
    #x:5:respawn:/usr/sbin/gdm -nodaemon
    #x:5:respawn:/opt/kde/bin/kdm -nodaemon
    #x:5:respawn:/usr/bin/slim >& /dev/null
    x:5:respawn:/usr/sbin/entranced -nodaemon >& /dev/null
    # End of file
    Anyway, thanks for the interest once more

  • OCCI & Signal Handling

    Hello,
    Before calling any OCCI function my signal handling (ie for SIGTERM) works, however, after calling OCCI environment/connection my signal handling no longer works. I believe the OCCI version is 9.2.0.6.0. Does anyone have an example of using signals with OCCI? It seems OCCI is 'stealing' my signals! Below is the basic test program.
    Thankyou in advance!
    Ross.
    The problem area: (c++)
    oracle::occi::Environment *env;
    oracle::occi::Connection *conn;
    oracle::occi::Statement *stmt;
    oracle::occi::ResultSet *rset;
    ::signal(SIGINT, signal_handle);
    ::signal(SIGTERM, signal_handle);
    ::signal(SIGPIPE, sigpipe_handle);
    cout << "Attempting to connect to server" << endl;
    try
    env = oracle::occi::Environment::createEnvironment (oracle::occi::Environment::DEFAULT);
    conn = env->createConnection ("usr", "pswd", "db");
    cout << "Connection Estabolished OK" << endl;
    string sqlStmt = "SELECT I_STATUS FROM K_INC";
    stmt = conn->createStatement (sqlStmt);
    rset = stmt->executeQuery ();
    while (rset->next ())
    cout << "Result!" << rset->getString(1) << endl;
    stmt->closeResultSet (rset);
    conn->terminateStatement (stmt);
    catch(oracle::occi::SQLException ex)
    cout<<"Exception thrown for displayAllRows"<<endl;
    cout<<"Error number: "<< ex.getErrorCode() << endl;
    cout<<ex.getMessage() << endl;
    cout << "We have a problem!" << endl;
    }

    hi Ross,
    I think there is no problem of signal stealing . I am able to use the signal handling before the connection, after the connection and even after insertion of rows into the table.
    I implicitly raised a signal in all the above three cases and also explicitly from another process using kill -15 <process ID >, and the signal handler seems to work fine.
    the code is attached below , see if it helps.
    thanks
    varun
    #include <iostream>
    #include <occi.h>
    #include<csignal>
    using namespace oracle::occi;
    using namespace std;
    int i=1;
    class occidml
    private:
    Environment *env;
    Connection *conn;
    Statement *stmt;
    public:
    occidml (string user, string passwd, string db)
    env = Environment::createEnvironment (Environment::DEFAULT);
    conn = env->createConnection (user, passwd, db);
    ~occidml ()
    env->terminateConnection (conn);
    Environment::terminateEnvironment (env);
    * Inserting a row into the table.
    void insertRow ()
    string sqlStmt = "INSERT INTO varun VALUES (111, 'ASHOK')";
    stmt = conn->createStatement (sqlStmt);
    try{
    stmt->executeUpdate ();
    cout << "insert - Success" << endl;
    }catch(SQLException ex)
    cout<<"Exception thrown for insertRow"<<endl;
    cout<<"Error number: "<< ex.getErrorCode() << endl;
    cout<<ex.getMessage() << endl;
    conn->terminateStatement (stmt);
    void term(int sig)
    cout << "handling signal no." << sig << endl;
    i=i+1;
    int main (void)
    string user = "SCOTT";
    string passwd = "TIGER";
    string db = "";
    signal(SIGTERM,term); // register a SIGTERM handler
    while(i==1){}
    printf("Before Connection\n");
    occidml *demo = new occidml (user, passwd, db);
    while (i==2){}
    printf("After Connection\n");
    cout << "Inserting a record into the table author_tab " <<endl;
    demo->insertRow ();
    while(i==3){}
    delete(demo);
    printf("Complete");
    }

  • Would like to know what all kind of tickets we handle in Sales and service?

    Would like to know what all kind of tickets we handle in Sales and service?

    Check out your campsites, many have wifi available. ANd you'd just connect your devices to them.
    You could also look into a device like the mifi, which is a portable wifi transmitter that connects via the cell phone network. (It's also possible if you have a smart phone that your phone will allow for tethering if your plan allows for it)
    but check out the coverage maps. Especially in the south west there are massive dead spots due to mountains and sparse populations.  FOr example, most of the grand canyon is one giant dead zone (kinda funny to stand there on the south rim and be surrounded by people trying to get a signal)
    Granted this was a few years ago but generally, cell coverage comes with population.

  • Signal handler in Tuxedo

    Hi,
    We are using Tuxedo 8.0 in our application.
    Our servers are crashing due to some code in our app...
    We want to use C signal handler to trap this signals to trace the code, before crashing. This way we can easily fix the code.
    But for some reason when I use signal, its not catching SIGBUS. I also used Usignal, but still to no success...
    Please suggest...
    Thanks
    Rama

    Hi,
    I have not encountered any problem with signal trapping with Tuxedo 6.5 and 8.1, i have not worked on 8.0. May i know how you are using signals in your service. In our case we are using as --
    service A()
    signal(SIGBUS , SigCatcher) ;
    signal(SIGSEGV , SigCatcher) ;
    signal(SIGINT , SigCatcher) ;
    signal(SIGTERM , SigCatcher) ;
    signal(SIGQUIT , SigCatcher) ;
    signal(_SIGKILL , SigCatcher) ;
    int SigCatcher(int signo)
    /* CODE to Handle signal *****************/
    Regds
    -Ashish

  • Signal Handling on Alpha machines

    Could any one of you tell me how to trap 'Ctl-C' on Alpha machines or OSF1 OS ? The following piece of code works fine on Linux and Solaris bt not on alphas ?
    I know sun.misc.* is not not guranteed to work on all platforms but wanted to see if any of you ran into this problem and has a solution?
    Thanks
    Sreenath
    import sun.misc.Signal;
    import sun.misc.SignalHandler;
    public class InterruptSignalHandler implements SignalHandler {
    public static boolean USER_INTERRUPTION = false;
    private String SIG_INT = "INT";
    private String SIG_TERM = "TERM";
    private Signal intSignal = null;
    private Signal termSignal = null;
    public InterruptSignalHandler() {
    public void install() {
    intSignal = new Signal(SIG_INT);
    termSignal = new Signal(SIG_TERM);
    Signal.handle(intSignal, this);
    Signal.handle(termSignal, this);
    * The <code>handle</code> method here.
    * @param sig a <code>Signal</code> value
    public void handle(Signal sig) {
    System.out.println("Tried to kill me...");
    if (USER_INTERRUPTION == false) {
    USER_INTERRUPTION = true;
    System.out.println("I am interrupted.."+USER_INTERRUPTION);
    * The <code>main</code> method here.
    * @param args[] a <code>String</code> value
    public static void main(String args[]) {
    System.out.println("Try to destroy me by pressing CTRL-C");
    InterruptSignalHandler intSigHandler = new InterruptSignalHandler();
    intSigHandler.install();
    // Start infinite loop
    for (;;){
    System.out.print(".");
    }

    Wasn't it enough to simply reply to your other (duplicate) question you posted yesterday??? Does my answer have no relevancy whatsoever???
    http://forum.java.sun.com/thread.jsp?thread=511180&forum=31&message=2429068

  • Signal Handler

    hi all.
    I encountered a very strange problem recently on Solaris 8 and forte C++ 6.2.
    #include "signal.h"
    extern "C" sig_handler(int)
    // do something
    if (signal(SIGUSR1, sig_handler) == SIG_ERR) {
    cerr << "Errors aborting!" << endl;
    else{
    cout << "OK" << endl;
    First, it is compiled and gives me OK when I start the program.
    but when SIGUSR1 is used, nothing happens.
    I change signal(SIGUSR1, sig_handler) to sigset(SIGUSR1, sig_handler) ,
    then it is working.
    Any idea?
    Thanks
    CC

    So what? How should iPlanet or any other product be able to change signal handlers in other processes? That's simply impossible.
    When using the old (obsolete?) signal() call the signal handler must reestablish itself via signal() after it got called.
    signal() has severe problems that's why sigaction() was introduced. I'd recommend to use sigaction()...

  • Hi! I purchased my ATV in Miami, but I live in Argentina. I have not been able to get the device running on any TVs. When I plug it in, it briefly shows the apple logo, then a sign saying no signal, check power cords and power source or sthg like that.

    Hi!
    I purchased my AppleTV in Miami, but I live in Argentina.
    I have not been able to get my device running correctly, and altough I've read tons of things online, I still have no solution to my problem.
    Here's the thing: after everything's plugged in and ON, I see the Apple logo briefly, then the TV displays a sign that says no signal, check pwoer cords and power source.
    But everything is plugged in and connected properly, otherwise, I doubt I'd be seeing the apple logo, right?
    I tried changing the HDMI cable, reversing the ends, switching ports, hard resetting the ATV, and trying a different TV. No luck.
    I read there is some issue with Samsung TVs, and most LED and LCD tvs down here are Samsung.
    On the other hand, I cannot return it or exchange it, since I bought it in the states.
    Oh! One of the tvs I tried it on displays a little sign that reads "connected at 1280x720 @60hz", and only THEN, goes to the "no signal" sign.
    Please!!! I am being driven up the walls here.... HELP!!

    Try this:
    Change the Apple TV resolution:
    Press and hold the Menu and Up button on your Apple Remote for six seconds.
    The Apple TV will automatically cycle to the next resolution at approximately 20 second intervals.
    Press Play on the Apple Remote to keep the current resolution or Select to manually cycle to the next resolution.

  • Late 2012 mac mini display signal drops while booting and monitor goes to sleep

    I have a new Late 2012 Mac Mini.  I have had it for a week, what just started happening is that during restart, the video signal drops and my monitor goes to sleep.  I then have to toggle through the input options on the monitor and the video signal is detected again and the monitor wakes up.
    Here is what I see - If i shut down and then power back up, I get the grey screen, then the apple logo, then the little status circle spins for a few cycles then stops and then the screen goes black and the monitor says signal lost and then 5 seconds later goes to sleep.
    It is possible it is my monitor but, I haven't had any issues with it and i only drops the signal like that during a reboot.

    Welcome to the family. Search this forum for the main thread for this problem titled: "mac mini 2012 video blinking out".

Maybe you are looking for

  • Problem with installing the new iTunes and quicktime PLEASE HELP!

    whenever i try to install iTunes 7 i keep getting this popup message. it has something to do with quicktime. please reply with any suggessions!! thank you. quicktime for windows could not open key: HKEYLOCALMACHINE/Software/Classes/QuickTimeP ayerLib

  • How to add an image to a JPanel ?

    hi, do you now how to add an image to a JPanel ? thanks a lot !

  • SPDIF-In on X-Fi Plati

    Hey all. I just bought an X-Fi Platinum. I have a PS2 hooked up to the SPDIF-In plug on my I/O module (and my tv card), and I was wondering how I could get the sound from there to play on my speakers. I expected it would happen automatically, but it

  • Unable to launch forms in 12.2.4 environment

    Hello, I just patched R12.TXK.C.delta.6 and unable to launch my forms IE11 64 bit version and also applied IE general patches. Patch 20007138:R12.TXK.C Note 1 Patch 19855051:R12.FWK.C Patch 19863340:R12.FND.C Patch 19195514:R12.JTT.C How to troublesh

  • File created, now crashes Flash on open

    I've created a file that I've worked on numerous times and recently resaved as a new file. Now, when I try to open that file, Flash crashes. I've moved the file to other partitions, to an external drive and trashed the main Flash preferences but stil