Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jakob Huber
postgres-lambda-diff
Commits
79cb0fd9
Commit
79cb0fd9
authored
27 years ago
by
Bruce Momjian
Browse files
Options
Downloads
Patches
Plain Diff
Cleanup for memset macro.
parent
220941da
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/include/c.h
+12
-4
12 additions, 4 deletions
src/include/c.h
with
12 additions
and
4 deletions
src/include/c.h
+
12
−
4
View file @
79cb0fd9
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
*
*
* Copyright (c) 1994, Regents of the University of California
* Copyright (c) 1994, Regents of the University of California
*
*
* $Id: c.h,v 1.2
0
1997/09/18 1
4:20:40
momjian Exp $
* $Id: c.h,v 1.2
1
1997/09/18 1
7:06:21
momjian Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -698,10 +698,18 @@ typedef struct Exception
...
@@ -698,10 +698,18 @@ typedef struct Exception
/* This function gets call too often, so we inline it if we can */
/* This function gets call too often, so we inline it if we can */
#define MemSet(start, val, len) do \
#define MemSet(start, val, len) do \
{
/* are we aligned for int32? */
\
{
/* are we aligned for int32? */
\
if (((start) & INT_ALIGN_MASK) == 0 && \
/* We have to cast the pointer to int \
so we can do the AND */
\
if (((int)(start) & INT_ALIGN_MASK) == 0 && \
((len) & INT_ALIGN_MASK) == 0 && \
((len) & INT_ALIGN_MASK) == 0 && \
(val) == 0 && \
(val) == 0 && \
(len) <= 256) \
/* \
* We got this number by testing this \
* against the stock memset() on \
* bsd/os 3.0. Larger values were \
* slower. \
*/
\
(len) <= 64) \
{ \
{ \
int32 *i = (int32 *)(start); \
int32 *i = (int32 *)(start); \
int32 *stop = (int32 *)((char *)(start) + (len)); \
int32 *stop = (int32 *)((char *)(start) + (len)); \
...
@@ -711,7 +719,7 @@ typedef struct Exception
...
@@ -711,7 +719,7 @@ typedef struct Exception
} \
} \
else \
else \
memset((start), (val), (len)); \
memset((start), (val), (len)); \
}
}
while (0)
/* ----------------------------------------------------------------
/* ----------------------------------------------------------------
* Section 9: externs
* Section 9: externs
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment