Changeset 61c91532 in mainline for kernel/generic/include/console/console.h
- Timestamp:
- 2025-04-17T16:18:27Z (5 days ago)
- Children:
- 634340fd
- Parents:
- a65ccc4 (diff), 888c06e (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - git-author:
- Wayne Thornton <wmthornton-dev@…> (2025-04-17 16:18:27)
- git-committer:
- GitHub <noreply@…> (2025-04-17 16:18:27)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/console/console.h
ra65ccc4 r61c91532 36 36 #define KERN_CONSOLE_H_ 37 37 38 #include <typedefs.h>39 #include <print.h>40 38 #include <console/chardev.h> 41 39 #include <synch/spinlock.h> … … 66 64 extern void kio_update(void *); 67 65 extern void kio_flush(void); 68 extern void kio_push_ char(const char32_t);69 SPINLOCK_EXTERN(kio_lock);66 extern void kio_push_bytes(const char *, size_t); 67 extern irq_spinlock_t kio_lock; 70 68 69 extern sysarg_t sys_kio_read(uspace_addr_t buf, size_t size, size_t at); 71 70 extern sys_errno_t sys_kio(int cmd, uspace_addr_t buf, size_t size); 72 71 … … 79 78 extern void console_unlock(void); 80 79 80 extern void putstr(const char *s, size_t n); 81 81 82 #endif /* KERN_CONSOLE_H_ */ 82 83
Note:
See TracChangeset
for help on using the changeset viewer.