123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- /* -*- mode:c; c-file-style:"k&r"; c-basic-offset: 4; tab-width:4; indent-tabs-mode:nil; mode:auto-fill; fill-column:78; -*- */
- /* vim: set ts=4 sw=4 et tw=78 fo=cqt wm=0: */
- /* Copyright (C) 2014 Stony Brook University
- This file is part of Graphene Library OS.
- Graphene Library OS is free software: you can redistribute it and/or
- modify it under the terms of the GNU Lesser General Public License
- as published by the Free Software Foundation, either version 3 of the
- License, or (at your option) any later version.
- Graphene Library OS is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Lesser General Public License for more details.
- You should have received a copy of the GNU Lesser General Public License
- along with this program. If not, see <http://www.gnu.org/licenses/>. */
- #include "pal_internal.h"
- #include "api.h"
- #ifndef NO_INTERNAL_PRINTF
- // Collect up to PRINTBUF_SIZE characters into a buffer
- // and perform ONE system call to print all of them,
- // in order to make the lines output to the console atomic
- // and prevent interrupts from causing context switches
- // in the middle of a console output line and such.
- #define PRINTBUF_SIZE 256
- struct printbuf {
- int idx; // current buffer index
- int cnt; // total bytes printed so far
- char buf[PRINTBUF_SIZE];
- };
- static int
- fputch(void * f, int ch, struct printbuf * b)
- {
- b->buf[b->idx++] = ch;
- if (b->idx == PRINTBUF_SIZE - 1) {
- _DkPrintConsole(b->buf, b->idx);
- b->idx = 0;
- }
- b->cnt++;
- return 0;
- }
- int
- vprintf(const char * fmt, va_list *ap)
- {
- struct printbuf b;
- b.idx = 0;
- b.cnt = 0;
- vfprintfmt((void *) &fputch, NULL, &b, fmt, ap);
- _DkPrintConsole(b.buf, b.idx);
- return b.cnt;
- }
- int
- printf(const char * fmt, ...)
- {
- va_list ap;
- int cnt;
- va_start(ap, fmt);
- cnt = vprintf(fmt, &ap);
- va_end(ap);
- return cnt;
- }
- extern_alias(printf);
- #endif
|