From: Evan Nemerson Date: Tue, 22 Jan 2013 02:28:13 +0000 (-0800) Subject: glib-2.0: mark Thread.set_priority and Thread.foreach as deprecated X-Git-Tag: 0.19.0~40 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ad62aa59b78759859b7f1624977fc7461e83f7e2;p=thirdparty%2Fvala.git glib-2.0: mark Thread.set_priority and Thread.foreach as deprecated --- diff --git a/vapi/glib-2.0.vapi b/vapi/glib-2.0.vapi index d0766bfd0..48577142d 100644 --- a/vapi/glib-2.0.vapi +++ b/vapi/glib-2.0.vapi @@ -1691,9 +1691,11 @@ namespace GLib { [CCode (simple_generics = true)] public static unowned Thread self (); public T join (); + [Deprecated (since = "2.32")] public void set_priority (ThreadPriority priority); public static void yield (); public static void exit (T retval); + [Deprecated (since = "2.32")] public static void @foreach (Func thread_func); [CCode (cname = "g_usleep")]