New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
0001-Add Profiling command interface #152
Comments
|
Hi, Please, ignore FluidProfile_0001.zip and take FluidProfile_0002.zip. regards jjc Original comment by: jjceresa |
|
Hi, regards jjc Original comment by: jjceresa |
I'am not yet familiar with git. This file look like the output of Another general question about git. Assuming some commits (.... Thanks. |
|
The most difficult part was to port the filepaths of your Having this done it was basically as far as I remember: git checkout v1.1.6
cat fluid_profile.patch-0003 | patch -p1
# patch applied to working copy
# now just make a commit as usual
git commit -a -m "applied jjc's profile patch"
# and as git to create a proper patch from this last commit
git format-patch -1
This specific process is known as squashing, which is usually achieved with git's interactive rebase tool The best practice is to make your commits properly right from the beginning. I know this is hard and not always possible (see my mess in the |
Thanks.
Yes, this process could produces incoherent commit history an should only be use on local branch never intended to be shared with distant git users. i am aware of this. I was thinking of this for a special local use. For example let local commits: |
Yes. Alternatively
Not sure if/how it's possible with |
|
Thanks for the infos. |
|
I have a bit of |
|
Test_keyboard_linux.c:34:51: fatal error: linux/stdio.h: File or directory
not found
compilation terminated
(should be <stdio.h>)
$ gcc Test_keyboard_linux.c
Test_keyboard_linux.c: In function ‘is_key_escape_depressed’:
Test_keyboard_linux.c:48:9: warning: implicit declaration of function
‘memset’ [-Wimplicit-function-declaration]
memset(key_bitmap, 0, sizeof(key_bitmap));
Test_keyboard_linux.c:48:9: warning: incompatible implicit declaration of
built-in function ‘memset’
Test_keyboard_linux.c:48:9: note: include ‘<string.h>’ or provide a
declaration of ‘memset’
After fixing the two includes, it keeps displaying the "Wait until" string,
i.e. case 3, so test failed.
|
|
This patch adds "profiling" commands interface for performance measurement for fluidsynth version v2.0.
Please see FluidProfile_0004.pdf for details. |
This patch adds "profiling" commands interface for performance measurement. addresses #152
Hi,
This patch adds "profiling" commands interface for performance
measurement.
Note this patch integrates an another patch FluidVoiceOff-0001
(see ticket 153).
Please see the attached document (FluidProfile_0001.pdf) that
describes all the details.
jjc
Reported by: jjceresa
Original Ticket: fluidsynth/tickets/154
The text was updated successfully, but these errors were encountered: