summaryrefslogtreecommitdiff
path: root/cesar/cp/beacon/test/cco
diff options
context:
space:
mode:
authorburet2008-04-30 15:52:47 +0000
committerburet2008-04-30 15:52:47 +0000
commit4b23ced5b92908e1e4f954823a4ae8dfc1c503b3 (patch)
tree0a3a62c4d2565f92609d95cf33c412853c33baee /cesar/cp/beacon/test/cco
parent51e4c950aa3e76425120f37078f88ef5352064cd (diff)
Fcall proto: add the "interface_hle_send_done()" function to post a SEND_DONE message to the IPMBox.
git-svn-id: svn+ssh://pessac/svn/cesar/trunk@1941 017c9cb6-072f-447c-8318-d5b54f68fe89
Diffstat (limited to 'cesar/cp/beacon/test/cco')
-rw-r--r--cesar/cp/beacon/test/cco/src/hle_stub.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/cesar/cp/beacon/test/cco/src/hle_stub.c b/cesar/cp/beacon/test/cco/src/hle_stub.c
index 414d56877c..9d74d83e9d 100644
--- a/cesar/cp/beacon/test/cco/src/hle_stub.c
+++ b/cesar/cp/beacon/test/cco/src/hle_stub.c
@@ -43,3 +43,15 @@ hle_ipmbox_send (hle_t *ctx, u32 *msg, uint length)
{
}
+/**
+ * Called by the Convergence layer or the interface module when the buffer has been used.
+ * This allows the HLE to know which buffer is newly available to be used or
+ * give it back to the ARM. (the buffer is borrowed by the linux).
+ *
+ * \param hle the hle context.
+ * \param buffer the buffer used to send the data.
+ */
+void
+hle_send_done (hle_t *ctx, u8 *buffer)
+{
+}