~ubuntu-branches/ubuntu/saucy/gnash/saucy-proposed

« back to all changes in this revision

Viewing changes to cygnal/libnet/cque.cpp

  • Committer: Package Import Robot
  • Author(s): Micah Gersten
  • Date: 2012-03-04 03:19:06 UTC
  • mfrom: (1.1.18) (3.1.24 sid)
  • Revision ID: package-import@ubuntu.com-20120304031906-p6q5rnb0xhgpof7o
Tags: 0.8.10-3ubuntu1
* Merge from Debian testing (FFe: LP: #940876), remaining changes:
  - Use mozilla-flashplugin as the alternative for now
  - Change xulrunner-dev build dep to firefox-dev
* Drop the plugin API porting patch, this has been fixed upstream
  - drop debian/patches*
* Drop the following change as we want Adobe's player to take priority
  if it's installed
  - Set alternative priority to 50 so that it matches Adobe Flash's priority

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
// 
2
 
//   Copyright (C) 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
 
2
//   Copyright (C) 2008, 2009, 2010, 2011, 2012 Free Software Foundation, Inc.
3
3
// 
4
4
// This program is free software; you can redistribute it and/or modify
5
5
// it under the terms of the GNU General Public License as published by
68
68
    boost::mutex::scoped_lock lk(_cond_mutex);
69
69
#ifndef _WIN32
70
70
    _cond.wait(lk);
71
 
    log_unimpl("CQue::wait(win32)");
 
71
    log_unimpl(_("CQue::wait(win32)"));
72
72
#endif
73
73
//    log_debug("wait mutex released for \"%s\"", _name);
74
74
}
80
80
//    GNASH_REPORT_FUNCTION;
81
81
#ifndef _WIN32
82
82
    _cond.notify_one();
83
 
    log_unimpl("CQue::notify(win32)");
 
83
    log_unimpl(_("CQue::notify(win32)"));
84
84
#endif
85
85
//    log_debug("wait mutex triggered for \"%s\"", _name);
86
86
}
249
249
    }
250
250
 
251
251
    // Finally erase all merged elements, and replace with the composite one
252
 
    que_t::iterator nextIter = _que.erase(from, to);
 
252
    _que.erase(from, to);
 
253
    //que_t::iterator nextIter = _que.erase(from, to);
253
254
//    _que.insert(nextIter, newbuf.get()); FIXME:
254
255
 
255
256
    return newbuf; //->release(); // ownership is transferred. TODO: return auto_ptr
284
285
 
285
286
// local Variables:
286
287
// mode: C++
287
 
// indent-tabs-mode: t
 
288
// indent-tabs-mode: nil
288
289
// End:
289
290