Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 0 additions & 11 deletions sys-utils/libcmt/include/libcmt/abi.h
Original file line number Diff line number Diff line change
Expand Up @@ -442,17 +442,6 @@ int cmt_abi_get_bool(cmt_buf_t *me, bool *value);
* |-ENOBUFS| no space left in @p me | */
int cmt_abi_get_address(cmt_buf_t *me, cmt_abi_address_t *value);

/** Create a frame of reference for the dynamic section
*
* @param [in,out] me initialized buffer
* @param [out] frame used when encoding dynamic values
* @return
* | | |
* |-------:|------------------------|
* | 0| success |
* |-ENOBUFS| no space left in @p me | */
int cmt_abi_start_frame(cmt_buf_t *me, void *frame);

/** Consume and decode the offset @p of
*
* @param [in,out] me initialized buffer
Expand Down
2 changes: 1 addition & 1 deletion sys-utils/libcmt/include/libcmt/rollup.h
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ typedef struct cmt_rollup_inspect {
} cmt_rollup_inspect_t;

/** Public struct with the finish state contents */
typedef struct cmt_rollup_finish {
typedef struct cmt_rollup_finish_s {
bool accept_previous_request;
int next_request_type;
uint32_t next_request_payload_length;
Expand Down
1 change: 1 addition & 0 deletions sys-utils/libcmt/tools/prepare-ffi.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#!/bin/sh

sed \
-e 's/\/\*.*\*\///g' \
-e '/\/\*/,/\*\//d' \
-e '/#if\s/,/#endif/d' \
-e '/#define/d' \
Expand Down