--- ../ori/wp-cron.php	2020-04-09 20:37:47.460728685 +0000
+++ wp-cron.php	2020-04-09 20:38:50.190942915 +0000
@@ -126,6 +126,21 @@
 
 			wp_unschedule_event( $timestamp, $hook, $v['args'] );
 
+
+			/**
+  			  * Fires the pre_wp_cron_run to call the associated filters
+			  * @ignore
+		      * @since 5.4.0
+			  * @param string $hook Name of the hook that was scheduled to be fired.
+			  * @param string $wp_cron_uuid Unique UUID for this hook execution context.
+			  */
+
+
+			// Create an Unique UUID to we can track this execution context
+			$wp_cron_uuid = wp_generate_uuid4();
+		
+			do_action('pre_wp_cron_run',$hook,$wp_cron_uuid);
+
 			/**
 			 * Fires scheduled events.
 			 *
@@ -137,6 +152,15 @@
 			 */
 			do_action_ref_array( $hook, $v['args'] );
 
+			/**
+              * Fires the post_wp_cron_run to call the associated filters
+              * @ignore
+              * @since 5.4.0
+			  * @param string $hook Name of the hook that was scheduled to be fired.
+              * @param string $wp_cron_uuid Unique UUID for this hook execution context.
+              */
+            do_action('post_wp_cron_run',$hook,$wp_cron_uuid);
+		
 			// If the hook ran too long and another cron process stole the lock, quit.
 			if ( _get_cron_lock() !== $doing_wp_cron ) {
 				return;
