diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2013-12-13 22:35:31 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2013-12-13 22:35:31 -0800 |
commit | f8ffbad0cec3ff0be1376a6352fe63a3c5e5f361 (patch) | |
tree | f872eed68a69c5dd2cb921315da224f2c0bbe29f /stream.h | |
parent | 097cf5fd7b8ea700b6012cd22cc56268695a5248 (diff) | |
download | txr-f8ffbad0cec3ff0be1376a6352fe63a3c5e5f361.tar.gz txr-f8ffbad0cec3ff0be1376a6352fe63a3c5e5f361.tar.bz2 txr-f8ffbad0cec3ff0be1376a6352fe63a3c5e5f361.zip |
New stream property: name. Some streams can report
their name: some kind of string.
* stream.c (name_k): New variable.
(null_get_prop): New static function.
(null_ops): Wire null_get_prop into ops structure.
(stdio_get_prop): Report h->descr as name.
(string_in_get_prop): New function.
(string_in_ops): Wire string_in_get_prop into ops structure.
(stream_init): Initialize name_k.
* stream.h (name_k): Declared.
* syslog.c (syslog_get_prop): Report "syslog" as
stream name.
Diffstat (limited to 'stream.h')
-rw-r--r-- | stream.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -52,7 +52,7 @@ extern val dev_k, ino_k, mode_k, nlink_k, uid_k; extern val gid_k, rdev_k, size_k, blksize_k, blocks_k; extern val atime_k, mtime_k, ctime_k; extern val from_start_k, from_current_k, from_end_k; -extern val real_time_k; +extern val real_time_k, name_k; extern val s_ifmt, s_iflnk, s_ifreg, s_ifblk, s_ifdir; extern val s_ifchr, s_ififo, s_isuid, s_isgid, s_isvtx, s_irwxu; |