Print this page
4118 libuuid should provide uuid_unparse_{upper,lower} functions
Reviewed by: Serghei Samsi <sscdvp@gmail.com>
Reviewed by: Josef 'Jeff' Sipek <jeffpc@josefsipek.net>
Reviewed by: Robert Mustacchi <rm@joyent.com>
Reviewed by: Garrett D'Amore <garrett@damore.org>

Split Close
Expand all
Collapse all
          --- old/usr/src/lib/libuuid/common/mapfile-vers
          +++ new/usr/src/lib/libuuid/common/mapfile-vers
↓ open down ↓ 12 lines elided ↑ open up ↑
  13   13  # When distributing Covered Code, include this CDDL HEADER in each
  14   14  # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
  15   15  # If applicable, add the following below this CDDL HEADER, with the
  16   16  # fields enclosed by brackets "[]" replaced with your own identifying
  17   17  # information: Portions Copyright [yyyy] [name of copyright owner]
  18   18  #
  19   19  # CDDL HEADER END
  20   20  #
  21   21  #
  22   22  # Copyright (c) 2006, 2010, Oracle and/or its affiliates. All rights reserved.
       23 +# Copyright 2014 Andrew Stormont.
  23   24  #
  24   25  
  25   26  #
  26   27  # MAPFILE HEADER START
  27   28  #
  28   29  # WARNING:  STOP NOW.  DO NOT MODIFY THIS FILE.
  29   30  # Object versioning must comply with the rules detailed in
  30   31  #
  31   32  #       usr/src/lib/README.mapfiles
  32   33  #
  33   34  # You should not be making modifications here until you've read the most current
  34   35  # copy of that file. If you need help, contact a gatekeeper for guidance.
  35   36  #
  36   37  # MAPFILE HEADER END
  37   38  #
  38   39  
  39   40  $mapfile_version 2
  40   41  
       42 +SYMBOL_VERSION ILLUMOS_0.1 {
       43 +    global:
       44 +        uuid_unparse_lower;
       45 +        uuid_unparse_upper;
       46 +} SUNW_1.1;
       47 +
  41   48  SYMBOL_VERSION SUNW_1.1 {
  42   49      global:
  43   50          uuid_clear;
  44   51          uuid_compare;
  45   52          uuid_copy;
  46   53          uuid_generate;
  47   54          uuid_generate_random;
  48   55          uuid_generate_time;
  49   56          uuid_is_null;
  50   57          uuid_parse;
  51   58          uuid_time;
  52   59          uuid_unparse;
  53   60  };
  54   61  
  55   62  SYMBOL_VERSION SUNWprivate_1.1 {
  56   63      global:
  57   64          SUNWprivate_1.1;
  58   65      local:
  59   66          *;
  60   67  };
    
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX