guile-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Guile-commits] branch lloda-squash1 updated (1800108 -> 68eb519)


From: Daniel Llorens
Subject: [Guile-commits] branch lloda-squash1 updated (1800108 -> 68eb519)
Date: Wed, 23 Nov 2016 11:06:34 +0000 (UTC)

lloda pushed a change to branch lloda-squash1
in repository guile.

  discards  1800108   Deprecate scm_from_contiguous_array
  discards  ddb5f40   Document new array functions
  discards  8331511   New functions (array-for-each-cell, 
array-for-each-cell-in-order)
  discards  f3c4a01   New functions array-from, array-from*, array-amend!
  discards  88a7fc4   Do not use array handles in scm_vector
  discards  e7d69d6   Special case for array-map! with three arguments
  discards  068df1e   Speed up for multi-arg cases of scm_ramap functions
  discards  28e8586   Support typed arrays in some sort functions
  discards  52fa5e1   Remove deprecated array functions
  discards  15585ac   Reuse SCM_BYTEVECTOR_TYPED_LENGTH in scm_array_get_handle
  discards  e9a18f9   Avoid unneeded internal use of array handles
  discards  a177ee3   Fix compilation of rank 0 typed array literals
      adds  705e3a8   Remove SCM_DEBUG_CELL_ACCESSES==1
      adds  4ae4988   Refactor async handling to be FIFO
      adds  0858431   Inline interrupts
      adds  1e92511   Add asyncs test
      adds  f927c70   Update join-thread docs
      adds  dc2a560   Deprecate dynamic roots
      adds  2b0ffb8   Add NEWS item about mutexes
      adds  8b5f323   Merge api-{data,compound}.texi
      adds  d236d4d   Fix compilation of rank 0 typed array literals
      adds  4e76679   Avoid unneeded internal use of array handles
      adds  85ac9cc   Reuse SCM_BYTEVECTOR_TYPED_LENGTH in scm_array_get_handle
      adds  09850ff   Remove deprecated array functions
      adds  fa40c28   Support typed arrays in some sort functions
      adds  31e9f8b   Speed up for multi-arg cases of scm_ramap functions
      adds  cd7fee8   Special case for array-map! with three arguments
      adds  7b6d854   Do not use array handles in scm_vector
      adds  acd9d5d   New functions array-from, array-from*, array-amend!
      adds  070bc57   New functions (array-for-each-cell, 
array-for-each-cell-in-order)
      adds  1744d72   Document new array functions, with provisional names
      adds  68eb519   Deprecate scm_from_contiguous_array

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (1800108)
            \
             N -- N -- N   refs/heads/lloda-squash1 (68eb519)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omits" are not gone; other references still
refer to them.  Any revisions marked "discards" are gone forever.

No new revisions were added by this update.

Summary of changes:
 NEWS                         |   23 +-
 doc/ref/Makefile.am          |    1 -
 doc/ref/api-compound.texi    | 4161 ---------------------------
 doc/ref/api-data.texi        | 6453 ++++++++++++++++++++++++++++++++++--------
 doc/ref/api-scheduling.texi  |   16 +-
 doc/ref/guile.texi           |    4 +-
 doc/ref/srfi-modules.texi    |    4 +-
 libguile.h                   |    1 -
 libguile/Makefile.am         |    4 -
 libguile/__scm.h             |    9 -
 libguile/array-map.c         |    1 -
 libguile/arrays.c            |   13 +-
 libguile/async.c             |  103 +-
 libguile/async.h             |    4 +-
 libguile/continuations.c     |    1 -
 libguile/debug.c             |    1 -
 libguile/deprecated.c        |  156 +
 libguile/deprecated.h        |   12 +
 libguile/eq.c                |    1 -
 libguile/eval.c              |    1 -
 libguile/feature.c           |    1 -
 libguile/fluids.h            |    1 -
 libguile/gc-malloc.c         |    1 -
 libguile/gc.c                |  143 +-
 libguile/gc.h                |   54 +-
 libguile/guardians.c         |    1 -
 libguile/hashtab.c           |    1 -
 libguile/hooks.c             |    1 -
 libguile/init.c              |    1 -
 libguile/keywords.c          |    1 -
 libguile/list.c              |    4 -
 libguile/load.c              |    1 -
 libguile/numbers.c           |    1 -
 libguile/objprop.c           |    1 -
 libguile/ports.c             |    1 -
 libguile/print.c             |    1 -
 libguile/procprop.c          |    1 -
 libguile/promises.c          |    1 -
 libguile/rdelim.c            |    1 -
 libguile/read.c              |    1 -
 libguile/root.c              |  200 --
 libguile/root.h              |   48 -
 libguile/rw.c                |    1 -
 libguile/scmsigs.c           |    1 -
 libguile/srcprop.c           |    1 -
 libguile/stackchk.c          |    1 -
 libguile/stacks.c            |    1 -
 libguile/strings.c           |    1 -
 libguile/strports.c          |    1 -
 libguile/threads.c           |    1 -
 libguile/threads.h           |    1 -
 libguile/values.c            |    1 -
 libguile/variable.c          |    1 -
 libguile/vectors.c           |    1 -
 libguile/vm-engine.c         |   62 +-
 libguile/vm.c                |    7 +
 libguile/vports.c            |    1 -
 module/ice-9/serialize.scm   |   10 +-
 test-suite/tests/asyncs.test |  138 +
 59 files changed, 5801 insertions(+), 5864 deletions(-)
 delete mode 100644 doc/ref/api-compound.texi
 delete mode 100644 libguile/root.c
 delete mode 100644 libguile/root.h
 create mode 100644 test-suite/tests/asyncs.test



reply via email to

[Prev in Thread] Current Thread [Next in Thread]