Tagged Questions
2
votes
2answers
124 views
What is the meaning of this splint warning and what might I be doing wrong?
This is the line of code:
bool cpfs_utimens(struct Cpfs *, char const *path, struct timespec const[2]);
Running splint 3.1.2 generates this warning:
cpfs.h:21:74: Function parameter times declared ...
2
votes
2answers
379 views
Is there a way to get Splint or a similar static checker to work with Linux Kernel modules?
I compiled ( no warnings ) the hello-5.c example from "The Linux Kernel Module Programming Guide" and when I tried to insmod it, I received the following error:
insmod: error inserting 'hello-5.ko': ...
0
votes
2answers
56 views
How to include header files while checking a source code with splint tool?
I created 2 C program source code files and one header file which just contains a function declaration.
mypattern.h
#include<stdio.h>
void pattern_check(char *,int,char *);
pattern_main.c
...
0
votes
2answers
259 views
Splint barfs on __thread, which is part of C99
Running splint
matt@stanley:~/cpfs$ splint -paramuse +gnuextensions cpfs.c
Halts on this line:
__thread int cpfs_errno;
With a parse error:
cpfs.c:127:13: Parse Error: Non-function ...