2 * Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca>
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; only version 2
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
24 * Send msg containing a command to an UST application via sock and wait for
27 * Return -1 on error or if reply fails else return 0.
29 int ustcomm_send_command(int sock
, struct lttcomm_ust_msg
*msg
)
32 struct lttcomm_ust_reply reply
;
34 DBG("Sending UST command %d to sock %d", msg
->cmd
, sock
);
37 len
= lttcomm_send_unix_sock(sock
, msg
, sizeof(*msg
));
42 DBG("Receiving UST reply on sock %d", sock
);
45 len
= lttcomm_recv_unix_sock(sock
, &reply
, sizeof(reply
));
50 if (reply
.ret_code
!= LTTCOMM_OK
) {
This page took 0.029617 seconds and 4 git commands to generate.