~ubuntu-branches/ubuntu/wily/gnustep-base/wily

« back to all changes in this revision

Viewing changes to Headers/Foundation/NSDistributedLock.h

  • Committer: Package Import Robot
  • Author(s): Yavor Doganov
  • Date: 2011-09-15 12:31:15 UTC
  • mfrom: (1.2.11 upstream) (8.1.4 experimental)
  • Revision ID: package-import@ubuntu.com-20110915123115-rmvsia9z0211izvq
Tags: 1.22.1-1
* New upstream release:
  + Fixes implicit declaration of function (Closes: #629216).
* debian/rules (v_make): Set to 2.6.1.
  (install-common): Do not delete non-existent .swp file.
* debian/control.m4 (Build-Depends): Remove gobjc; gnustep-make now
  depends on it.
  (libgnustep-base-dev) <Depends>: Likewise.
  (Suggests): Remove; completely pointless.
* debian/control: Regenerate.
* debian/patches/avoid-nsl-linkage.patch: Refresh.
* debian/patches/autoreconf.patch: Regenerate.

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
  NSString      *_lockPath;
41
41
  NSDate        *_lockTime;
42
42
#endif
43
 
#if     !GS_NONFRAGILE
44
 
  void          *_unused;
 
43
#if     GS_NONFRAGILE
 
44
#else
 
45
  /* Pointer to private additional data used to avoid breaking ABI
 
46
   * when we don't have the non-fragile ABI available.
 
47
   * Use this mechanism rather than changing the instance variable
 
48
   * layout (see Source/GSInternal.h for details).
 
49
   */
 
50
  @private id _internal GS_UNUSED_IVAR;
45
51
#endif
46
52
}
47
53