Sha256: cf0d79832f5807483ca8797ee9a8b922a17ab344b916cdc06fb91a3d63bdd63a
Contents?: true
Size: 1.52 KB
Versions: 52
Compression:
Stored size: 1.52 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 #ifdef G_THREADS_ENABLED 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
52 entries across 52 versions & 1 rubygems