From: Viktor M. <mih...@us...> - 2005-05-11 14:00:53
|
Update of /cvsroot/sblim/cmpi-base In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23217 Modified Files: ChangeLog NEWS cmpiOSBase_OperatingSystemProvider.c Log Message: Fixed bugs: 1199449. Adapted to new indication_helper signature. Index: cmpiOSBase_OperatingSystemProvider.c =================================================================== RCS file: /cvsroot/sblim/cmpi-base/cmpiOSBase_OperatingSystemProvider.c,v retrieving revision 1.14 retrieving revision 1.15 diff -u -d -r1.14 -r1.15 --- cmpiOSBase_OperatingSystemProvider.c 14 Apr 2005 14:37:05 -0000 1.14 +++ cmpiOSBase_OperatingSystemProvider.c 11 May 2005 14:00:44 -0000 1.15 @@ -23,10 +23,6 @@ #include <stdio.h> #include <string.h> -#ifndef NOEVENTS -#define CMPI_VER_86 1 -#endif - #include "cmpidt.h" #include "cmpift.h" #include "cmpimacs.h" @@ -537,7 +533,8 @@ if(ind_reg_pollfnc(INDCLASSNAME, "Poll function", check, - 10) != IND_OK) { + 10, + IND_BEHAVIOUR_LEVEL_EDGE) != IND_OK) { _OSBASE_TRACE(1,("--- %s ind_init() failed: register poll function",_ClassName)); CMRelease(sourceInstance); return; Index: ChangeLog =================================================================== RCS file: /cvsroot/sblim/cmpi-base/ChangeLog,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- ChangeLog 11 May 2005 11:40:08 -0000 1.6 +++ ChangeLog 11 May 2005 14:00:44 -0000 1.7 @@ -1,3 +1,11 @@ +2005-05-11 <mih...@dy...> + + * cmpiOSBase_OperatingSystemProvider.c: + Bug 1199449: Removed CMPI_VER_86 definition as the CMPI_VER_nn + macros are not for provider usage. Further, fixed the ind_reg_pollfnc + invokation. + + 2005-05-10 <mih...@dy...> * configure.ac: Bug 1199129 added -DCMPI_VERSION=90 to CPPFLAGS Index: NEWS =================================================================== RCS file: /cvsroot/sblim/cmpi-base/NEWS,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- NEWS 11 May 2005 11:40:08 -0000 1.2 +++ NEWS 11 May 2005 14:00:44 -0000 1.3 @@ -3,3 +3,4 @@ Bugs: - 1199129 Added toleration for newer (spec-conforming) CMPI headers. +- 1199449 Fixed compile problem with new indication_helper 0.4.0 . |