Overview
Comment: | Added a "do-profile" target which uses OProfile to profile |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
3cae5530598fb27dec130da52a9faa2d |
User & Date: | rkeene on 2019-09-20 20:30:19 |
Other Links: | manifest | tags |
Context
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 | |
19:04 | Use flexible mode for our demos check-in: 9b49bfa195 user: rkeene tags: trunk | |
Changes
Modified .fossil-settings/ignore-glob from [921d15e503] to [7ee6f2e4ca].
︙ | |||
19 20 21 22 23 24 25 | 19 20 21 22 23 24 25 26 27 | + + | xvfs-create-standalone.new xvfs-create-standalone xvfs-test-coverage __test__.tcl sdks xvfs_random.so xvfs_synthetic.so profile oprofile_data |
Modified Makefile from [70eadc23e9] to [fa807992c6].
︙ | |||
47 48 49 50 51 52 53 | 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 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 | - + + + - + + + + + + + + + + + + + - + | xvfs_random$(LIB_SUFFIX): $(shell find example -type f) $(shell find lib -type f) lib/xvfs/xvfs.c.rvt xvfs-create-random Makefile ./xvfs-create-random | $(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) -DXVFS_MODE_FLEXIBLE -x c - -shared -o xvfs_random$(LIB_SUFFIX) $(LIBS) xvfs_synthetic$(LIB_SUFFIX): $(shell find lib -type f) lib/xvfs/xvfs.c.rvt xvfs-create-synthetic Makefile ./xvfs-create-synthetic | $(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) -DXVFS_MODE_FLEXIBLE -x c - -shared -o xvfs_synthetic$(LIB_SUFFIX) $(LIBS) |
Added profile.c version [e65448a613].
|