~ubuntu-branches/debian/sid/gsmartcontrol/sid

« back to all changes in this revision

Viewing changes to src/applib/cmdex_sync.cpp

  • Committer: Package Import Robot
  • Author(s): Giuseppe Iuculano
  • Date: 2013-05-31 11:41:52 UTC
  • mfrom: (1.1.4)
  • Revision ID: package-import@ubuntu.com-20130531114152-5ljhkuswwpt4kdwo
Tags: 0.8.7-1
* [314881d] Updated debian/watch
* [18ebada] Imported Upstream version 0.8.7
* [c2a1f1b] debian/rules: Provide build-arch and build-indep
* [d3036a4] Enabled Hardening Options
* [2edfb87] Refreshed patches and removed patches apllied upstream
* [ac3b953] Bump to standard versions 3.9.4
* [292c276] Remove quilt from depends

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/**************************************************************************
2
2
 Copyright:
3
 
      (C) 2008 - 2011  Alexander Shaduri <ashaduri 'at' gmail.com>
 
3
      (C) 2008 - 2012  Alexander Shaduri <ashaduri 'at' gmail.com>
4
4
 License: See LICENSE_gsmartcontrol.txt
5
5
***************************************************************************/
 
6
/// \file
 
7
/// \author Alexander Shaduri
 
8
/// \ingroup applib
 
9
/// \weakgroup applib
 
10
/// @{
6
11
 
7
12
#include <glib.h>  // g_usleep()
8
13
 
12
17
 
13
18
namespace {
14
19
 
 
20
        /// "Execution finished" signal
15
21
        static sigc::signal<void, const CmdexSyncCommandInfo&> s_cmdex_sync_signal_execute_finish;
16
22
 
 
23
        /// Mutex for "Execution finished" signal
17
24
        static hz::SyncPolicyMtDefault::Mutex s_cmdex_sync_signal_execute_finish_mutex;
18
25
 
19
26
}
20
27
 
21
28
 
 
29
 
22
30
cmdex_signal_execute_finish_type cmdex_sync_signal_execute_finish()
23
31
{
24
32
        return cmdex_signal_execute_finish_type(s_cmdex_sync_signal_execute_finish,
137
145
 
138
146
 
139
147
 
 
148
 
 
149
/// @}