How to close a device handle in Win 8 Metro Style App ?
-
jueves, 19 de abril de 2012 8:53
Hi All,
I open a device with CreateDeviceAccessInstance(IID_IDeviceIoControl,path,GENERIC_READ,&deviceAccessAsync).
I would like to close the device when app got suspended. But there is no such an API.
I wonder how could I close the device handle ?
CloseHandle take a handle as the argument when the value deviceAccessAsync is of type ComPtr<IDeviceIoControl>.
How to close the device then ?
Regards
Cary
Cary
Todas las respuestas
-
jueves, 19 de abril de 2012 21:48Moderador
Cary,
What would closing the handle on app suspend accomplish?
Best Wishes - Eric
-
viernes, 20 de abril de 2012 5:59
Hi Eric,
Thanks for you reply.
As described in the question, a device handle was opened in the Metro Style App.
And I want to close the device handle when App got suspended, for it's the only chance for the app to close the device handle.
Because suspended app may be killed without being notified by the system. This may cause to resource leakage, for a device was open but never closed.
Is there a suggested solution from Microsoft on how to handle hardware device in Metro Style App?
Regards
Cary
-
viernes, 20 de abril de 2012 23:45Moderador
Cary,
If an app is killed, the handle is closed by the system. There’s no chance of a handle leak. If having the handle open means the device isn’t accessible to other applications, or that the device stays in an undesirable state, then it is OK to close it. The handle gets closed when there are no more references to the IDeviceIoControl interface.
Best Wishes - Eric
- Propuesto como respuesta Eric Hanson-MSFTMicrosoft Employee, Moderator domingo, 22 de abril de 2012 1:17
- Marcado como respuesta Bob_BaoMVP, Moderator lunes, 07 de mayo de 2012 10:29

