Clean up includes of s_lock.h.

Users of spinlocks should use spin.h, not s_lock.h. And lwlock.h
hasn't utilized spinlocks for quite a while.

Discussion: https://postgr.es/m/20200618183041.upyrd25eosecyf3x@alap3.anarazel.de
pull/55/head
Andres Freund 6 years ago
parent cf1234a10e
commit f219167910
  1. 1
      src/backend/main/main.c
  2. 2
      src/include/storage/condition_variable.h
  3. 1
      src/include/storage/lwlock.h

@ -35,7 +35,6 @@
#include "common/username.h"
#include "port/atomics.h"
#include "postmaster/postmaster.h"
#include "storage/s_lock.h"
#include "storage/spin.h"
#include "tcop/tcopprot.h"
#include "utils/help_config.h"

@ -23,7 +23,7 @@
#define CONDITION_VARIABLE_H
#include "storage/proclist_types.h"
#include "storage/s_lock.h"
#include "storage/spin.h"
typedef struct
{

@ -20,7 +20,6 @@
#include "port/atomics.h"
#include "storage/proclist_types.h"
#include "storage/s_lock.h"
struct PGPROC;

Loading…
Cancel
Save