From: mmaroti Date: Mon, 16 Jun 2008 19:05:30 +0000 (+0000) Subject: change TimeSyncPacket to synchronous X-Git-Tag: release_tinyos_2_1_0_0~285 X-Git-Url: https://oss.titaniummirror.com/gitweb/?p=tinyos-2.x.git;a=commitdiff_plain;h=3c736796f8f069dd3fe807a3addb59822dc24548 change TimeSyncPacket to synchronous --- diff --git a/tos/interfaces/TimeSyncPacket.nc b/tos/interfaces/TimeSyncPacket.nc index 027a8048..cae62193 100644 --- a/tos/interfaces/TimeSyncPacket.nc +++ b/tos/interfaces/TimeSyncPacket.nc @@ -32,7 +32,7 @@ interface TimeSyncPacket * messages transmitted via the TimeSyncSend interface. It is recommended * that this command be called from the receive event handler. */ - async command bool isValid(message_t* msg); + command bool isValid(message_t* msg); /** * This command should be called by the receiver of a message. The time @@ -42,5 +42,5 @@ interface TimeSyncPacket * It is recommended that this command be called from the receive event * handler. */ - async command size_type eventTime(message_t* msg); + command size_type eventTime(message_t* msg); }