Changeset 183788f1 in mainline for uspace/libc/generic/io/printf_core.c
- Timestamp:
- 2007-04-09T16:17:25Z (18 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 36f19c0
- Parents:
- de33dab
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/libc/generic/io/printf_core.c
rde33dab r183788f1 41 41 #include <ctype.h> 42 42 #include <string.h> 43 #include <async.h> /* for pseudo thread serialization */44 43 45 44 #define __PRINTF_FLAG_PREFIX 0x00000001 /**< show prefixes 0x or 0*/ … … 444 443 int width, precision; 445 444 uint64_t flags; 446 447 /* Don't let other pseudo threads interfere. */448 async_serialize_start();449 445 450 446 counter = 0; … … 679 675 } 680 676 681 async_serialize_end();682 677 return counter; 683 678 minus_out: 684 async_serialize_end();685 679 return -counter; 686 680 }
Note:
See TracChangeset
for help on using the changeset viewer.