Overview
Comment: | More profiling work |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
22c09ebad1ae10459df42b05cba1a7ef |
User & Date: | rkeene on 2019-09-20 20:52:40 |
Other Links: | manifest | tags |
Context
2019-10-09
| ||
20:37 | Switch to perfect hashing for lookups, to save space check-in: a719156faf user: rkeene tags: trunk | |
2019-09-20
| ||
20:52 | More profiling work check-in: 22c09ebad1 user: rkeene tags: trunk | |
20:30 | Added a "do-profile" target which uses OProfile to profile check-in: 3cae553059 user: rkeene tags: trunk | |
Changes
Modified .fossil-settings/ignore-glob from [7ee6f2e4ca] to [5dadc8b9dc].
︙ | |||
19 20 21 22 23 24 25 | 19 20 21 22 23 24 25 26 27 28 29 30 | + - + + + | xvfs-create-standalone.new xvfs-create-standalone xvfs-test-coverage __test__.tcl sdks xvfs_random.so xvfs_synthetic.so profile-bare |
Modified Makefile from [fa807992c6] to [fa4437d0b1].
︙ | |||
77 78 79 80 81 82 83 | 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 | - + - - - + + + + - + + - + + + + + - + + + | rm -f xvfs-test-coverage.info lcov --capture --directory . --output-file xvfs-test-coverage.info rm -rf xvfs-test-coverage mkdir xvfs-test-coverage genhtml xvfs-test-coverage.info --output-directory xvfs-test-coverage rm -f xvfs-test-coverage.info |
Modified profile.c from [e65448a613] to [2186d5269d].
1 2 3 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 | + + + + - + - + + + + + + + + + + + + - - - - - - + + - - + + - + - - - - - | #include <tcl.h> #include <stdio.h> #include <stdlib.h> #undef XVFS_DEBUG #define XVFS_MODE_STANDALONE #include "example.c" |