~clint-fewbar/ubuntu/precise/gearmand/drop-unneeded-patches

« back to all changes in this revision

Viewing changes to libgearman-server/wakeup.h

  • Committer: Package Import Robot
  • Author(s): Stig Sandbeck Mathisen, Michael Fladischer, Stig Sandbeck Mathisen
  • Date: 2012-01-23 11:31:08 UTC
  • mfrom: (6.1.2 sid)
  • Revision ID: package-import@ubuntu.com-20120123113108-wl1yhiba13q9jusb
Tags: 0.27-1
[Michael Fladischer]
* Patch: fix spelling
* Patch: remove dependency on googleanalytics
* Patch: fix tests
* Use non-authenticating URL for Vcs-Git.
* Add "status" action to init script.

[Stig Sandbeck Mathisen]
* New upstream release (Closes: #621486) (LP: #682680)
* Remove build dependency on drizzle
  (until it reaches testing again)
* Build with support for tokyocabinet
* Remove backported ipv6 patch
* Patch: disable hostile build tests, they take hours...
* Patch: workaround duplicate address issue for tests
* Do not build API documentation, the sources are not shipped in
  upstream tarball
* Update debian/copyright

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* Gearman server and library
 
2
 * Copyright (C) 2011 DataDifferential
 
3
 * Copyright (C) 2008 Brian Aker, Eric Day
 
4
 * All rights reserved.
 
5
 *
 
6
 * Use and distribution licensed under the BSD license.  See
 
7
 * the COPYING file in the parent directory for full text.
 
8
 */
 
9
 
 
10
#pragma once
 
11
 
 
12
#include <libgearman-1.0/visibility.h>
 
13
 
 
14
typedef enum
 
15
{
 
16
  GEARMAND_WAKEUP_PAUSE,
 
17
  GEARMAND_WAKEUP_SHUTDOWN,
 
18
  GEARMAND_WAKEUP_SHUTDOWN_GRACEFUL,
 
19
  GEARMAND_WAKEUP_CON,
 
20
  GEARMAND_WAKEUP_RUN
 
21
} gearmand_wakeup_t;
 
22
 
 
23
#ifdef __cplusplus
 
24
extern "C" {
 
25
#endif
 
26
 
 
27
GEARMAN_INTERNAL_API
 
28
const char *gearmand_strwakeup(gearmand_wakeup_t arg);
 
29
 
 
30
#ifdef __cplusplus
 
31
}
 
32
#endif