~ubuntu-branches/ubuntu/trusty/ceph/trusty-updates

« back to all changes in this revision

Viewing changes to src/librados/IoCtxImpl.h

  • Committer: Package Import Robot
  • Author(s): James Page
  • Date: 2014-04-09 11:14:03 UTC
  • mfrom: (1.1.33)
  • Revision ID: package-import@ubuntu.com-20140409111403-jlql95pa8kg1nk9a
Tags: 0.79-0ubuntu1
* New upstream release (LP: #1278466):
  - d/p/modules.patch: Refreshed.
  - d/ceph.install: Install all jerasure modules.

Show diffs side-by-side

added added

removed removed

Lines of Context:
42
42
  object_locator_t oloc;
43
43
 
44
44
  Mutex aio_write_list_lock;
45
 
  tid_t aio_write_seq;
 
45
  ceph_tid_t aio_write_seq;
46
46
  Cond aio_write_cond;
47
47
  xlist<AioCompletionImpl*> aio_write_list;
48
 
  map<tid_t, std::list<AioCompletionImpl*> > aio_write_waiters;
 
48
  map<ceph_tid_t, std::list<AioCompletionImpl*> > aio_write_waiters;
49
49
 
50
50
  Mutex *lock;
51
51
  Objecter *objecter;