You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@stdcxx.apache.org by "Martin Sebor (JIRA)" <ji...@apache.org> on 2007/01/19 02:30:30 UTC

[jira] Resolved: (STDCXX-320) error passing SIG_ERR, SIG_IGN to signal()

     [ https://issues.apache.org/jira/browse/STDCXX-320?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Martin Sebor resolved STDCXX-320.
---------------------------------

       Resolution: Fixed
    Fix Version/s: 4.2

Fixed with the referenced patch.

> error passing SIG_ERR, SIG_IGN to signal()
> ------------------------------------------
>
>                 Key: STDCXX-320
>                 URL: https://issues.apache.org/jira/browse/STDCXX-320
>             Project: C++ Standard Library
>          Issue Type: Bug
>          Components: 18. Language Support
>    Affects Versions: 4.1.3, 4.1.2
>         Environment: EDG eccp, Solaris
>            Reporter: Martin Sebor
>         Assigned To: Martin Sebor
>             Fix For: 4.2
>
>
> $ cat t.cpp && make t
> #include <csignal>
> int main ()
> {
>     std::signal (SIGABRT, SIG_DFL);
>     std::signal (SIGABRT, SIG_ERR);
>     std::signal (SIGABRT, SIG_IGN);
> }
> eccp -c -I/build/sebor/dev/stdlib/include/ansi -D_RWSTDDEBUG    -D_RWSTD_USE_CONFIG -I/build/sebor/dev/stdlib/include -I/build/sebor/eccp-3.8-11s/include -I/build/sebor/dev/stdlib/include/ansi -I/build/sebor/PlumHall/lvs06a/conform -I/build/sebor/PlumHall/lvs06a/dst.3  -A -x --template_directory=/build/sebor/eccp-3.8-11s/lib -g  --display_error_number --remarks --diag_suppress 193,236,340,401,261,479,487,678,679,815 --diag_suppress 177,381,191,68,550,611,997,549   t.cpp
> "t.cpp", line 6: error #167: argument of type "int" is incompatible with
>           parameter of type "void (*)(int) C"
>       std::signal (SIGABRT, SIG_ERR);
>                             ^
> "t.cpp", line 7: error #167: argument of type "int" is incompatible with
>           parameter of type "void (*)(int) C"
>       std::signal (SIGABRT, SIG_IGN);
>                             ^
> 2 errors detected in the compilation of "t.cpp".
> make: *** [t.o] Error 2

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira