[maemo-developers] HAL context initializing failure

From: Pallavi Kandhare pallavi.kandhare at yahoo.com
Date: Tue May 18 15:40:52 EEST 2010
Hi Dave,
 
I did include the sample code in my previous mail. 
 
http://www.gossamer-threads.com/lists/maemo/developers/61353
 
I am including the code again for your reference:
I am getting the error "HAL context initializing failure" in my below code
When i debug the code it says unable to access memory at 0x0.


Code: 

DBusConnection *connection; 
DBusError error; 
LibHalContext *ctx; 
dbus_error_init(&error); 
if((connection = dbus_bus_get(DBUS_BUS_SYSTEM,&error)) == NULL) 
{ 
printf("Error %s\n",error.message); 
return 1; 
} 
if ( dbus_error_is_set(&error) ) 
{ 
printf("Unable to connect to DBus: %s\n",error.message); 
return 1; 
} 
if((ctx = libhal_ctx_new())==NULL) 
{ 
printf("Error %s\n",error.message); 
return 1; 
} 
if ( !libhal_ctx_set_dbus_connection(ctx, connection) ) 
{ 
printf("Error %s\n",error.message); 
return 1; 
} 
if ( !libhal_ctx_init(ctx, &error) ) 
{ 
printf("Hal context initializing failure %s\n",error.message); 
return 1; 
} 
else
{
   printf("Success");
   return 0;
}
 
Thanks & Regards.


      
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.maemo.org/pipermail/maemo-developers/attachments/20100518/f8d050f3/attachment.htm>
More information about the maemo-developers mailing list