implied: use a time based timeout instead of counting ->nr_children
[smatch.git] / validation / sm_chunk1.c
blob3302c78df8660a8f8d6e6f22b5902d35b681eca1
1 #include "check_debug.h"
3 static void perf_calculate_period(unsigned long nsec, unsigned long count)
5 if (nsec + count > 64)
6 return;
8 __smatch_implied(nsec + count);
9 nsec = 100;
10 __smatch_implied(nsec + count);
15 * check-name: smatch chunk #1
16 * check-command: smatch -I.. sm_chunk1.c
18 * check-output-start
19 sm_chunk1.c:8 perf_calculate_period() implied: nsec + count = '0-64'
20 sm_chunk1.c:10 perf_calculate_period() implied: nsec + count = ''
21 * check-output-end