Following the feedback i got from:
http://stackoverflow.com/questions/2683682/new-to-linux-kernel-driver-development/2683819
In linux-kernel (v 2.6.32),
I have written a driver (.c file) by comparing it with an existing driver
and "borrowing" heavily from its code.
The driver is registered fine and init() and probe() are working fine.
...
Hello, I meet one problem that i can't solve now.
I have the following:
UnityHelper.DefaultContainer.RegisterInstance(typeof(IMyInterface), "test", instance);
where UnityHelper.DefaultContainer is my helper for getting unity container with loaded configuration.
here I registered instance as an instance of IMyInterface.
So anywhere(so...
Hi,
I am in the process of migrating to spring security plugin from acegi plugin.Currently working on grails environment. I am facing a weird issue as my authentication success event and authentication bad credentials event does not throw at all.I added println statements in the callback in config.groovy and also through listeners.Howeve...
Hello,
In olden days of MFC and WinForms applications, you could register a file type with your application, and then double clicking that type of file in windows explorer would open that file in your application. I have a situation where I need to implement the same for an out of browser silverlight application, but I am unable to find...