Blame src/libnpth.vers

Packit 5e354d
# libnpth.vers - List of symbols to export.
Packit 5e354d
# Copyright (C) 2002, 2004, 2005, 2009 g10 Code GmbH
Packit 5e354d
#
Packit 5e354d
# This file is part of nPth.
Packit 5e354d
#
Packit 5e354d
# nPth is free software; you can redistribute it and/or modify it
Packit 5e354d
# under the terms of the GNU Lesser General Public License as
Packit 5e354d
# published by the Free Software Foundation; either version 2.1 of the
Packit 5e354d
# License, or (at your option) any later version.
Packit 5e354d
#
Packit 5e354d
# nPth is distributed in the hope that it will be useful, but WITHOUT
Packit 5e354d
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
Packit 5e354d
# or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General
Packit 5e354d
# Public License for more details.
Packit 5e354d
#
Packit 5e354d
# You should have received a copy of the GNU Lesser General Public
Packit 5e354d
# License along with this program; if not, see <http://www.gnu.org/licenses/>.
Packit 5e354d
Packit 5e354d
#-------------------------------------------------------
Packit 5e354d
# Please remember to add new functions also to npth.def
Packit 5e354d
#-------------------------------------------------------
Packit 5e354d
Packit 5e354d
NPTH_1.0 {
Packit 5e354d
  global:
Packit 5e354d
    npth_init;
Packit 5e354d
    npth_create;
Packit 5e354d
    npth_join;
Packit 5e354d
    npth_exit;
Packit 5e354d
    npth_mutex_lock;
Packit 5e354d
    npth_mutex_timedlock;
Packit 5e354d
    npth_rwlock_rdlock;
Packit 5e354d
    npth_rwlock_timedrdlock;
Packit 5e354d
    npth_rwlock_wrlock;
Packit 5e354d
    npth_rwlock_timedwrlock;
Packit 5e354d
    npth_cond_wait;
Packit 5e354d
    npth_cond_timedwait;
Packit 5e354d
    npth_usleep;
Packit 5e354d
    npth_sleep;
Packit 5e354d
    npth_waitpid;
Packit 5e354d
    npth_system;
Packit 5e354d
    npth_sigmask;
Packit 5e354d
    npth_sigwait;
Packit 5e354d
    npth_connect;
Packit 5e354d
    npth_accept;
Packit 5e354d
    npth_select;
Packit 5e354d
    npth_pselect;
Packit 5e354d
    npth_read;
Packit 5e354d
    npth_write;
Packit 5e354d
    npth_recvmsg;
Packit 5e354d
    npth_sendmsg;
Packit 5e354d
    npth_unprotect;
Packit 5e354d
    npth_protect;
Packit 5e354d
    npth_is_protected;
Packit 5e354d
    npth_clock_gettime;
Packit 5e354d
Packit 5e354d
    npth_sigev_init;
Packit 5e354d
    npth_sigev_add;
Packit 5e354d
    npth_sigev_fini;
Packit 5e354d
    npth_sigev_sigmask;
Packit 5e354d
    npth_sigev_get_pending;
Packit 5e354d
Packit 5e354d
    npth_getname_np;
Packit 5e354d
    npth_setname_np;
Packit 5e354d
Packit 5e354d
  local:
Packit 5e354d
    *;
Packit 5e354d
Packit 5e354d
};