summaryrefslogtreecommitdiffstatshomepage
path: root/py/obj.h
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2014-07-30 14:04:16 +0100
committerDamien George <damien.p.george@gmail.com>2014-09-07 20:40:10 +0100
commitc8c44a4c2e6deaf57a4d7badfcbb9ba525d3dfa2 (patch)
treec74d7aed3f4507bbd4e6058de3cf7f1416a48664 /py/obj.h
parent8105736982b0bb2ee3809c8d05b9c41b9aceea1b (diff)
downloadmicropython-c8c44a4c2e6deaf57a4d7badfcbb9ba525d3dfa2.tar.gz
micropython-c8c44a4c2e6deaf57a4d7badfcbb9ba525d3dfa2.zip
py: Add ioctl method to stream protocol; add initial modselect.
Diffstat (limited to 'py/obj.h')
-rw-r--r--py/obj.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/py/obj.h b/py/obj.h
index a14a031c87..79f3041500 100644
--- a/py/obj.h
+++ b/py/obj.h
@@ -230,12 +230,14 @@ void mp_get_buffer_raise(mp_obj_t obj, mp_buffer_info_t *bufinfo, mp_uint_t flag
// Stream protocol
#define MP_STREAM_ERROR (-1)
+#define MP_STREAM_FLUSH (1)
+#define MP_STREAM_POLL (2)
typedef struct _mp_stream_p_t {
// On error, functions should return MP_STREAM_ERROR and fill in *errcode (values
// are implementation-dependent, but will be exposed to user, e.g. via exception).
mp_uint_t (*read)(mp_obj_t obj, void *buf, mp_uint_t size, int *errcode);
mp_uint_t (*write)(mp_obj_t obj, const void *buf, mp_uint_t size, int *errcode);
- // add seek() ?
+ mp_uint_t (*ioctl(mp_obj_t obj, mp_uint_t request, int *errcode, ...);
mp_uint_t is_text : 1; // default is bytes, set this for text stream
} mp_stream_p_t;