diff options
Diffstat (limited to 'src/threads/Threads.vala')
-rw-r--r-- | src/threads/Threads.vala | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/threads/Threads.vala b/src/threads/Threads.vala new file mode 100644 index 0000000..0e1b1ec --- /dev/null +++ b/src/threads/Threads.vala @@ -0,0 +1,14 @@ +/* Copyright 2011-2014 Yorba Foundation + * + * This software is licensed under the GNU Lesser General Public License + * (version 2.1 or later). See the COPYING file in this distribution. + */ + +namespace Threads { + public void init() throws Error { + } + + public void terminate() { + } +} + |