PG help function ********************/
| 238 | |
| 239 | /******************** PG help function ********************/ |
| 240 | static inline void _graphNode_destroy(gpointer data) { |
| 241 | graphNode_t *graphNode = (graphNode_t *)data; |
| 242 | g_hash_table_destroy(graphNode->graph); |
| 243 | pqueue_free(graphNode->pq); |
| 244 | g_free(graphNode); |
| 245 | } |
| 246 | |
| 247 | /** |
| 248 | 1. insert the `req->obj_id` to the past_request_pointer. |
nothing calls this directly
no test coverage detected