summaryrefslogtreecommitdiffstats
path: root/src/kiro-sb.h
diff options
context:
space:
mode:
authorTimo Dritschler <timo.dritschler@kit.edu>2015-04-15 15:15:37 +0200
committerTimo Dritschler <timo.dritschler@kit.edu>2015-04-15 15:15:37 +0200
commit019504a32e56d5bd6ae7b0cbdcbec2e114e6f638 (patch)
treecc0b1ce91044cf0e1a816c9e2a34b6191f5310b5 /src/kiro-sb.h
parentb0ffd9f0a5278f2ef81a267af3c8f72ab8d0f7c2 (diff)
downloadkiro-019504a32e56d5bd6ae7b0cbdcbec2e114e6f638.tar.gz
kiro-019504a32e56d5bd6ae7b0cbdcbec2e114e6f638.tar.bz2
kiro-019504a32e56d5bd6ae7b0cbdcbec2e114e6f638.tar.xz
kiro-019504a32e56d5bd6ae7b0cbdcbec2e114e6f638.zip
Fixed a bug in KiroSb
Removed a debugging statement which was causing the KiroSb to sync permanently Added gi.introspection annotations to some of the KiroSb documentation
Diffstat (limited to 'src/kiro-sb.h')
-rw-r--r--src/kiro-sb.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/kiro-sb.h b/src/kiro-sb.h
index 0f155c3..4736c75 100644
--- a/src/kiro-sb.h
+++ b/src/kiro-sb.h
@@ -268,7 +268,8 @@ void kiro_sb_thaw (KiroSb *sb);
* Data might either change by pushing (in case of a 'serving' #KiroSb) or
* after (automatic or manual) syncing (in case of a 'cloning' #KiroSb).
*
- * Returns: (transfer none): A void pointer the stored data
+ * Returns: (transfer none) (type gulong):
+ * A void pointer the stored data
* Note:
* The returned pointer to the element might become invalid at any time by
* automatic or manual sync. Under no circumstances might the returned pointer
@@ -287,7 +288,7 @@ void* kiro_sb_get_data (KiroSb *sb);
* Calling this function will do the same thing as kiro_sb_get_data, but it
* will internaly wait until new data has arived before returning it.
*
- * Returns: (transfer none): A void pointer the stored data
+ * Returns: (transfer none) (type gulong): A void pointer the stored data
* Note:
* The returned pointer to the element might become invalid at any time by
* automatic or manual sync. Under no circumstances might the returned pointer
@@ -325,7 +326,8 @@ gboolean kiro_sb_push (KiroSb *sb, void *data);
* This operation is only valid for a 'serving' #KiroSb. Calling this
* function on a 'cloning' #KiroSb will allways return a %NULL pointer.
*
- * Returns: (transfer none): A pointer to the memory where the new data should be stored
+ * Returns: (transfer none) (type gulong):
+ * A pointer to the memory where the new data should be stored
* Note:
* It is the users responsibility to ensure no more data is written to the
* pointed memory then was specified with the initial call to kiro_sb_serve or