~codership/galera/2.x

« back to all changes in this revision

Viewing changes to gcomm/src/gcomm/view.hpp

  • Committer: Alexey Yurchenko
  • Date: 2014-01-29 14:43:26 UTC
  • mto: This revision was merged to the branch mainline in revision 167.
  • Revision ID: alexey.yurchenko@codership.com-20140129144326-aa70nhzofl0smkm8
Fixes:
* provider pause() is fixed to avoid potential deadlock with replicating threads.
* lp:1099478 - handle own address in the address list properly (do not throw exception)
* lp:1259952 - fixed allocation of multiple of pages when posix_fallocate() is unavailable
* lp:1261996 - fixed compilation on Solaris 11
* lp:1232747 - fixed group remerge after partitioning event

Synced with SVN r3450

Show diffs side-by-side

added added

removed removed

Lines of Context:
139
139
        void add_members (NodeList::const_iterator begin,
140
140
                          NodeList::const_iterator end);
141
141
 
142
 
        void add_joined      (const UUID& pid, const std::string& name);
143
 
        void add_left        (const UUID& pid, const std::string& name);
144
 
        void add_partitioned (const UUID& pid, const std::string& name);
 
142
        void add_joined      (const UUID& pid, const std::string& name = "");
 
143
        void add_left        (const UUID& pid, const std::string& name = "");
 
144
        void add_partitioned (const UUID& pid, const std::string& name = "");
145
145
 
146
146
        const NodeList& members     () const;
147
147
        const NodeList& joined      () const;