~brandontschaefer/mir/lp.1233089-fix-v-h-scroll

« back to all changes in this revision

Viewing changes to src/server/frontend/socket_messenger.cpp

  • Committer: Tarmac
  • Author(s): Kevin DuBois, Alan Griffiths, Alexandros Frantzis, Robert Ancell, Daniel d'Andrada
  • Date: 2013-09-26 04:50:57 UTC
  • mfrom: (1081.3.8 development-branch)
  • Revision ID: tarmac-20130926045057-w43xdxtxz8lhy8fg
frontend, config: Mechanism for connecting via a socket pair.
graphics: android: stop nex4 from tearing
gbm: Blank unused connected outputs.
compositor: tidy up configuration logic for initializing bypass flag.
tests: Add tests for Android's InputReader & friends
Bump libmirserver soname and Mir project version.

Approved by kevin gunn, PS Jenkins bot.

Show diffs side-by-side

added added

removed removed

Lines of Context:
59
59
    // function has completed (if it would be executed asynchronously.
60
60
    // NOTE: we rely on this synchronous behavior as per the comment in
61
61
    // mf::SessionMediator::create_surface
62
 
    ba::write(*socket, ba::buffer(whole_message));
 
62
    boost::system::error_code err;
 
63
    ba::write(*socket, ba::buffer(whole_message), err);
63
64
}
64
65
 
65
66
void mfd::SocketMessenger::send_fds(std::vector<int32_t> const& fds)