src/jdk.jdwp.agent/share/native/libjdwp/debugDispatch.c

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 1998, 2008, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this --- 1,7 ---- /* ! * Copyright (c) 1998, 2015, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this
*** 31,40 **** --- 31,41 ---- #include "ClassTypeImpl.h" #include "InterfaceTypeImpl.h" #include "ArrayTypeImpl.h" #include "FieldImpl.h" #include "MethodImpl.h" + #include "ModuleImpl.h" #include "ObjectReferenceImpl.h" #include "StringReferenceImpl.h" #include "ThreadReferenceImpl.h" #include "ThreadGroupReferenceImpl.h" #include "ClassLoaderReferenceImpl.h"
*** 80,89 **** --- 81,91 ---- l1Array[JDWP_COMMAND_SET(ClassLoaderReference)] = (void *)ClassLoaderReference_Cmds; l1Array[JDWP_COMMAND_SET(ArrayReference)] = (void *)ArrayReference_Cmds; l1Array[JDWP_COMMAND_SET(EventRequest)] = (void *)EventRequest_Cmds; l1Array[JDWP_COMMAND_SET(StackFrame)] = (void *)StackFrame_Cmds; l1Array[JDWP_COMMAND_SET(ClassObjectReference)] = (void *)ClassObjectReference_Cmds; + l1Array[JDWP_COMMAND_SET(Module)] = (void *)Module_Cmds; } void debugDispatch_reset(void) {