~ubuntu-branches/ubuntu/trusty/guile-2.0/trusty

« back to all changes in this revision

Viewing changes to module/ice-9/poll.scm

  • Committer: Package Import Robot
  • Author(s): Rob Browning
  • Date: 2012-02-04 11:33:28 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20120204113328-op7l4os5fo5f8mm3
Tags: 2.0.5+1-1
* Incorporate upstream version 2.0.5.

* Delete 0001-Fix-the-SRFI-60-copy-bit-documentation.patch,
  0002-Define-_GNU_SOURCE-to-fix-the-GNU-kFreeBSD-build.patch, and
  0003-Include-gc.h-rather-than-gc-gc_version.h-in-pthread-.patch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
  (load-extension (string-append "libguile-" (effective-version))
39
39
                  "scm_init_poll"))
40
40
 
 
41
(if (not (= %sizeof-struct-pollfd 8))
 
42
    (error "Unexpected struct pollfd size" %sizeof-struct-pollfd))
 
43
 
41
44
(if (defined? 'POLLIN)
42
45
    (export POLLIN))
43
46