Print this page
2964 need POSIX 2008 locale object support
Reviewed by: Robert Mustacchi <rm@joyent.com>


  27  * This file is used to limit the symbols that are to be exported from the
  28  * debugger.  This ensures that dmods follow the module API.
  29  *
  30  * There is a special rule for generating the mapfile. If the symbol
  31  * is not a function then the symbol, in the mapfile, must have the
  32  * the token "variable" as the third symbol on the line - see the
  33  * entries for __ctype and errno below.
  34  */
  35 
  36 $mapfile_version 2
  37 
  38 SYMBOL_SCOPE {
  39         global:
  40 
  41 /* END PROLOGUE */
  42 /* BEGIN EPILOGUE */
  43                 /*
  44                  * Secret additions to the module API
  45                  */
  46 
  47                 /* Implementation detail of the ctype macros */
  48                 __ctype;        /* variable */
  49                 /* There should be only one - ours */
  50                 errno;          /* variable */











  51 
  52                 mdb_tgt_aread;
  53                 mdb_dis_create;
  54                 mdb_dis_destroy;
  55 
  56         local:
  57                 *;
  58 };
  59 /* END EPILOGUE */


  27  * This file is used to limit the symbols that are to be exported from the
  28  * debugger.  This ensures that dmods follow the module API.
  29  *
  30  * There is a special rule for generating the mapfile. If the symbol
  31  * is not a function then the symbol, in the mapfile, must have the
  32  * the token "variable" as the third symbol on the line - see the
  33  * entries for __ctype and errno below.
  34  */
  35 
  36 $mapfile_version 2
  37 
  38 SYMBOL_SCOPE {
  39         global:
  40 
  41 /* END PROLOGUE */
  42 /* BEGIN EPILOGUE */
  43                 /*
  44                  * Secret additions to the module API
  45                  */
  46 


  47                 /* There should be only one - ours */
  48                 errno;          /* variable */
  49                 isprint;
  50                 isalnum;
  51                 isalpha;
  52                 isgraph;
  53                 iscntrl;
  54                 isdigit;
  55                 isxdigit;
  56                 isupper;
  57                 islower;
  58                 ispunct;
  59                 isspace;
  60 
  61                 mdb_tgt_aread;
  62                 mdb_dis_create;
  63                 mdb_dis_destroy;
  64 
  65         local:
  66                 *;
  67 };
  68 /* END EPILOGUE */