< prev index next >

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

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 1998, 2005, 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, 2020, 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
*** 344,352 **** outStream_setError(out, map2jdwpError(error)); } return JNI_TRUE; } ! void *EventRequest_Cmds[] = { (void *)0x3 ! ,(void *)setCommand ! ,(void *)clearCommand ! ,(void *)clearAllBreakpoints}; --- 344,356 ---- outStream_setError(out, map2jdwpError(error)); } return JNI_TRUE; } ! CommandSet EventRequest_Cmds = { ! 3, "EventRequest", ! { ! {setCommand, "SetCommand"}, ! {clearCommand, "ClearCommand"}, ! {clearAllBreakpoints, "ClearAllBreakpoints"} ! } ! };
< prev index next >