1 /* The Ruby interface to the notmuch mail library
3 * Copyright © 2010, 2011 Ali Polatel
5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 3 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see http://www.gnu.org/licenses/ .
18 * Author: Ali Polatel <alip@exherbo.org>
24 * call-seq: THREADS.destroy! => nil
26 * Destroys the threads, freeing all resources allocated for it.
29 notmuch_rb_threads_destroy (VALUE self)
31 notmuch_threads_t *threads;
33 Data_Get_Struct (self, notmuch_threads_t, threads);
35 notmuch_threads_destroy (threads);
36 DATA_PTR (self) = NULL;
41 /* call-seq: THREADS.each {|item| block } => THREADS
43 * Calls +block+ once for each thread in +self+, passing that element as a
47 notmuch_rb_threads_each (VALUE self)
49 notmuch_thread_t *thread;
50 notmuch_threads_t *threads;
52 Data_Get_Notmuch_Threads (self, threads);
54 for (; notmuch_threads_valid (threads); notmuch_threads_move_to_next (threads)) {
55 thread = notmuch_threads_get (threads);
56 rb_yield (Data_Wrap_Struct (notmuch_rb_cThread, NULL, NULL, thread));