~ubuntu-branches/ubuntu/wily/afnix/wily

« back to all changes in this revision

Viewing changes to src/lib/std/shl/List.cpp

  • Committer: Package Import Robot
  • Author(s): Nobuhiro Iwamatsu
  • Date: 2015-07-11 02:00:35 UTC
  • mfrom: (10.1.1 sid)
  • Revision ID: package-import@ubuntu.com-20150711020035-2nhpztq7s15qyc0v
Tags: 2.5.1-1
* New upstream release. (Closes: #789968)
* Update debian/control.
  - Update Standards-Version to 3.9.6.
* Add support mips64(el) and ppc64el. (Closes: #741508, #748146)
* Add patches/support-gcc-5.x.patch. (Closes: #777767)
  - Fix build with gcc-5.x.
* Add patches/Disable-NET0001.als.patch.
  - Disable test of NET0001.als.

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
// - the copyright holder be liable for any  direct, indirect, incidental or -
12
12
// - special damages arising in any way out of the use of this software.     -
13
13
// ---------------------------------------------------------------------------
14
 
// - copyright (c) 1999-2012 amaury darsch                                   -
 
14
// - copyright (c) 1999-2015 amaury darsch                                   -
15
15
// ---------------------------------------------------------------------------
16
16
 
17
17
#include "List.hpp"
105
105
    rdlock ();
106
106
    try {
107
107
      // write the list length
108
 
      Integer llen (length ());
109
 
      llen.wrstream (os);
 
108
      long len = length ();
 
109
      Serial::wrlong (len, os);
110
110
      // loop in list
111
111
      s_list* node = p_root;
112
112
      while (node != nilp) {
139
139
    wrlock ();
140
140
    try {
141
141
      // get the list length
142
 
      Integer llen;
143
 
      llen.rdstream (is);
144
 
      long len = llen.tolong ();
 
142
      long len = Serial::rdlong (is);
145
143
      // read in each object
146
144
      for (long i = 0; i < len; i++) add (Serial::deserialize (is));
147
145
      unlock ();
480
478
 
481
479
  // return true if the iterator is at the end
482
480
  
483
 
  bool Listit::isend (void) {
 
481
  bool Listit::isend (void) const {
484
482
    rdlock ();
485
483
    try {
486
484
      bool result = (p_node == nilp);