note description: "Implementation of PROCESS_INFO" status: "See notice at end of class." legal: "See notice at end of class." date: "$Date$" revision: "$Revision$" class PROCESS_INFO_IMP inherit PROCESS_INFO feature -- Access process_id: INTEGER -- Process ID of current process local l_prc: detachable SYSTEM_DLL_PROCESS do create l_prc.make l_prc := l_prc.get_current_process if l_prc /= Void then Result := l_prc.id end end note copyright: "Copyright (c) 1984-2013, Eiffel Software and others" license: "Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt)" source: "[ Eiffel Software 5949 Hollister Ave., Goleta, CA 93117 USA Telephone 805-685-1006, Fax 805-685-6869 Website http://www.eiffel.com Customer support http://support.eiffel.com ]" end