Print this page
OS-4300 increase RT signal count
Reviewed by: Robert Mustacchi <rm@joyent.com>


   5  * Common Development and Distribution License (the "License").
   6  * You may not use this file except in compliance with the License.
   7  *
   8  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
   9  * or http://www.opensolaris.org/os/licensing.
  10  * See the License for the specific language governing permissions
  11  * and limitations under the License.
  12  *
  13  * When distributing Covered Code, include this CDDL HEADER in each
  14  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
  15  * If applicable, add the following below this CDDL HEADER, with the
  16  * fields enclosed by brackets "[]" replaced with your own identifying
  17  * information: Portions Copyright [yyyy] [name of copyright owner]
  18  *
  19  * CDDL HEADER END
  20  */
  21 
  22 /*
  23  * Copyright 2010 Sun Microsystems, Inc.  All rights reserved.
  24  * Use is subject to license terms.

  25  */
  26 
  27 /*      Copyright (c) 1988 AT&T     */
  28 /*        All Rights Reserved   */
  29 
  30 #include "lint.h"
  31 #include <signal.h>
  32 #include <siginfo.h>
  33 
  34 #undef  _sys_siginfolist
  35 #define OLDNSIG 34
  36 
  37 const char *_sys_traplist[NSIGTRAP] = {
  38         "breakpoint trap",
  39         "trace trap",
  40         "read access trap",
  41         "write access trap",
  42         "execute access trap",
  43         "dtrace trap"
  44 };


 171         0,              0,                      /* SIGXRES */
 172         0,              0,                      /* SIGJVM1 */
 173         0,              0,                      /* SIGJVM2 */
 174         0,              0,                      /* SIGINFO */
 175         0,              0,                      /* SIGRTMIN */
 176         0,              0,                      /* SIGRTMIN+1 */
 177         0,              0,                      /* SIGRTMIN+2 */
 178         0,              0,                      /* SIGRTMIN+3 */
 179         0,              0,
 180         0,              0,
 181         0,              0,
 182         0,              0,
 183         0,              0,
 184         0,              0,
 185         0,              0,
 186         0,              0,
 187         0,              0,
 188         0,              0,
 189         0,              0,
 190         0,              0,                      /* SIGRTMIN+15 */

 191         0,              0,                      /* SIGRTMAX-15 */
 192         0,              0,
 193         0,              0,
 194         0,              0,
 195         0,              0,
 196         0,              0,
 197         0,              0,
 198         0,              0,
 199         0,              0,
 200         0,              0,
 201         0,              0,
 202         0,              0,
 203         0,              0,                      /* SIGRTMAX-3 */
 204         0,              0,                      /* SIGRTMAX-2 */
 205         0,              0,                      /* SIGRTMAX-1 */
 206         0,              0,                      /* SIGRTMAX */
 207 };
 208 
 209 const struct siginfolist *_sys_siginfolistp = _sys_siginfolist_data;


   5  * Common Development and Distribution License (the "License").
   6  * You may not use this file except in compliance with the License.
   7  *
   8  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
   9  * or http://www.opensolaris.org/os/licensing.
  10  * See the License for the specific language governing permissions
  11  * and limitations under the License.
  12  *
  13  * When distributing Covered Code, include this CDDL HEADER in each
  14  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
  15  * If applicable, add the following below this CDDL HEADER, with the
  16  * fields enclosed by brackets "[]" replaced with your own identifying
  17  * information: Portions Copyright [yyyy] [name of copyright owner]
  18  *
  19  * CDDL HEADER END
  20  */
  21 
  22 /*
  23  * Copyright 2010 Sun Microsystems, Inc.  All rights reserved.
  24  * Use is subject to license terms.
  25  * Copyright 2015, Joyent, Inc.
  26  */
  27 
  28 /*      Copyright (c) 1988 AT&T     */
  29 /*        All Rights Reserved   */
  30 
  31 #include "lint.h"
  32 #include <signal.h>
  33 #include <siginfo.h>
  34 
  35 #undef  _sys_siginfolist
  36 #define OLDNSIG 34
  37 
  38 const char *_sys_traplist[NSIGTRAP] = {
  39         "breakpoint trap",
  40         "trace trap",
  41         "read access trap",
  42         "write access trap",
  43         "execute access trap",
  44         "dtrace trap"
  45 };


 172         0,              0,                      /* SIGXRES */
 173         0,              0,                      /* SIGJVM1 */
 174         0,              0,                      /* SIGJVM2 */
 175         0,              0,                      /* SIGINFO */
 176         0,              0,                      /* SIGRTMIN */
 177         0,              0,                      /* SIGRTMIN+1 */
 178         0,              0,                      /* SIGRTMIN+2 */
 179         0,              0,                      /* SIGRTMIN+3 */
 180         0,              0,
 181         0,              0,
 182         0,              0,
 183         0,              0,
 184         0,              0,
 185         0,              0,
 186         0,              0,
 187         0,              0,
 188         0,              0,
 189         0,              0,
 190         0,              0,
 191         0,              0,                      /* SIGRTMIN+15 */
 192         0,              0,                      /* SIGRTMIN+16 */
 193         0,              0,                      /* SIGRTMAX-15 */
 194         0,              0,
 195         0,              0,
 196         0,              0,
 197         0,              0,
 198         0,              0,
 199         0,              0,
 200         0,              0,
 201         0,              0,
 202         0,              0,
 203         0,              0,
 204         0,              0,
 205         0,              0,                      /* SIGRTMAX-3 */
 206         0,              0,                      /* SIGRTMAX-2 */
 207         0,              0,                      /* SIGRTMAX-1 */
 208         0,              0,                      /* SIGRTMAX */
 209 };
 210 
 211 const struct siginfolist *_sys_siginfolistp = _sys_siginfolist_data;