Sha256: 7cf1b4c9aa7a74159128b60631f9d011e8a18f1fe7491a69ee5c17ad0e4fb7ca

Contents?: true

Size: 1.55 KB

Versions: 108

Compression:

Stored size: 1.55 KB

Contents

/* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
/*
 *  Copyright (C) 2011  Ruby-GNOME2 Project Team
 *  Copyright (C) 2005  Masao Mutoh
 *
 *  This library is free software; you can redistribute it and/or
 *  modify it under the terms of the GNU Lesser General Public
 *  License as published by the Free Software Foundation; either
 *  version 2.1 of the License, or (at your option) any later version.
 *
 *  This library is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 *  Lesser General Public License for more details.
 *
 *  You should have received a copy of the GNU Lesser General Public
 *  License along with this library; if not, write to the Free Software
 *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
 *  MA  02110-1301  USA
 */

#include "rbgprivate.h"

#define RG_TARGET_NAMESPACE cThread

static VALUE RG_TARGET_NAMESPACE;

static VALUE
rg_s_init(VALUE self)
{
#ifdef HAVE_G_THREAD_INIT
#if defined(G_THREADS_ENABLED) && !GLIB_CHECK_VERSION(2, 32, 0)
    g_thread_init(NULL);
#endif
#endif
    return self;
}

static VALUE
rg_s_supported_p(G_GNUC_UNUSED VALUE self)
{
#ifdef HAVE_G_THREAD_INIT
#ifdef G_THREADS_ENABLED
    return CBOOL2RVAL(g_thread_supported());
#else
    return Qfalse;
#endif
#else
    return Qfalse;
#endif

}

void
Init_glib_threads(void)
{
    RG_TARGET_NAMESPACE = rb_define_class_under(mGLib, "Thread", rb_cObject);

    RG_DEF_SMETHOD(init, 0);
    RG_DEF_SMETHOD_P(supported, 0);
}

Version data entries

108 entries across 108 versions & 1 rubygems

Version Path
glib2-3.4.3 ext/glib2/rbglib_threads.c
glib2-3.4.2 ext/glib2/rbglib_threads.c
glib2-3.4.1 ext/glib2/rbglib_threads.c
glib2-3.4.0 ext/glib2/rbglib_threads.c
glib2-3.3.9 ext/glib2/rbglib_threads.c
glib2-3.3.8 ext/glib2/rbglib_threads.c
glib2-3.3.7 ext/glib2/rbglib_threads.c
glib2-3.3.6 ext/glib2/rbglib_threads.c
glib2-3.3.5 ext/glib2/rbglib_threads.c
glib2-3.3.4 ext/glib2/rbglib_threads.c
glib2-3.3.3 ext/glib2/rbglib_threads.c
glib2-3.3.2 ext/glib2/rbglib_threads.c
glib2-3.3.1 ext/glib2/rbglib_threads.c
glib2-3.3.0 ext/glib2/rbglib_threads.c
glib2-3.2.9-x64-mingw32 ext/glib2/rbglib_threads.c
glib2-3.2.9-x86-mingw32 ext/glib2/rbglib_threads.c
glib2-3.2.9 ext/glib2/rbglib_threads.c
glib2-3.2.8-x64-mingw32 ext/glib2/rbglib_threads.c
glib2-3.2.8-x86-mingw32 ext/glib2/rbglib_threads.c
glib2-3.2.8 ext/glib2/rbglib_threads.c