mirror of
https://github.com/apache/nuttx.git
synced 2025-01-13 06:18:40 +08:00
gcc/gcov: Add instrumentation function
Some functions will insert these functions: void __gcov_execve(void) { } void __gcov_execv(void) { } void __gcov_fork(void) { } Signed-off-by: wangmingrong1 <wangmingrong1@xiaomi.com>
This commit is contained in:
parent
4f3f9751c1
commit
893e67745b
1 changed files with 12 additions and 0 deletions
|
@ -315,6 +315,18 @@ void __gcov_exit(void)
|
|||
{
|
||||
}
|
||||
|
||||
void __gcov_execve(void)
|
||||
{
|
||||
}
|
||||
|
||||
void __gcov_execv(void)
|
||||
{
|
||||
}
|
||||
|
||||
void __gcov_fork(void)
|
||||
{
|
||||
}
|
||||
|
||||
void __gcov_dump(void)
|
||||
{
|
||||
FAR struct gcov_info *info;
|
||||
|
|
Loading…
Reference in a new issue