~peter-pearse/ubuntu/natty/guile-1.8/prop001

« back to all changes in this revision

Viewing changes to libguile/threads.h

  • Committer: Bazaar Package Importer
  • Author(s): Steve Langasek
  • Date: 2009-06-04 19:01:38 UTC
  • mfrom: (8.1.1 sid)
  • Revision ID: james.westby@ubuntu.com-20090604190138-1ao3t6sj31cqvcfe
Tags: 1.8.6+1-1ubuntu1
* Merge from Debian unstable, remaining changes:
  - Build with -Wno-error.
  - Build with thread support. Some guile-using programs like autogen need it.
  - Add debian/guile-1.8-libs.shlibs: Thread support breaks ABI, bump the soname.
* Dropped changes:
  - libltdl3-dev -> libltdl7-dev: current libltdl-dev Provides: both.
  - debian/patches/libtool-ftbfs.diff: integrated upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
#include "libguile/root.h"
29
29
#include "libguile/iselect.h"
30
30
#include "libguile/dynwind.h"
 
31
#include "libguile/continuations.h"
31
32
 
32
33
#if SCM_USE_PTHREAD_THREADS
33
34
#include "libguile/pthread-threads.h"
107
108
  SCM_STACKITEM *base;
108
109
  SCM_STACKITEM *top;
109
110
  jmp_buf regs;
 
111
#ifdef __ia64__
 
112
  void *register_backing_store_base;
 
113
  scm_t_contregs *pending_rbs_continuation;
 
114
#endif
110
115
 
111
116
} scm_i_thread;
112
117